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

6 lines
157 B
Python

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