4 lines
58 B
Python
4 lines
58 B
Python
# This loop runs forever!
|
|
x = 1
|
|
while x <= 5:
|
|
print(x) |
# This loop runs forever!
|
|
x = 1
|
|
while x <= 5:
|
|
print(x) |