range() works now

This commit is contained in:
David Halter
2012-08-08 16:07:06 +02:00
parent 024cc78b2c
commit e4b911b943
3 changed files with 13 additions and 0 deletions

View File

@@ -45,6 +45,13 @@ for i in b:
#? float() str()
a[0]
# -----------------
# range()
# -----------------
for i in range(10):
#? int()
i
# -----------------
# list comprehensions
# -----------------