paddockpass/edx-python/w1/2.py
Christopher Talib 041e82774f Adding edx work
2019-07-03 12:20:01 +02:00

6 lines
192 B
Python

for iteration in range(5):
count = 0
while True:
for letter in "hello, world":
count += 1
print("Iteration " + str(iteration) + "; count is: " + str(count))