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

8 lines
191 B
Python

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