✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Welches Ergebnis liefert das folgende Programm:
werte = ("X","O","-")text = ""for i in range(2): j = 1 while j <= 5: text = text + werte[i] j += 1 if j == 3: breakprint(text)