✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Welche Ausgabe liefert folgender Programmteil:
wert = 500x = 60while x > 0: wert = wert - x x = x - 20if x // 10 == x / 10: print("Das Ergebnis lautet: ",wert)else: print("Das Ergebnis lautet: ",x)