OpenTechSchool / python-beginners

Workshop material for "Introduction to Programming with Python"
http://opentechschool.github.io/python-beginners/
175 stars 253 forks source link

Improve explicitness of loop #5

Closed filias closed 11 years ago

filias commented 12 years ago

In the loop exercises add a print i statement to show what is the value of i.

alper commented 12 years ago

Where exactly?

filias commented 12 years ago

for example in the introduction:

http://opentechschool.github.com/python-beginners/en/loops.html

for i in range(10): print(i) print("Hello!")

utstikkar commented 12 years ago

Yes I agree, most students did not realise what i and range(10) were here for