Progress with list comprehensions. There is now a separate class.

This commit is contained in:
Dave Halter
2014-11-12 11:42:31 +01:00
parent cc661473bc
commit 54c5591ccb
4 changed files with 38 additions and 2 deletions

View File

@@ -126,7 +126,7 @@ a = [a for a in [1]]
#? int()
a[0]
a = [a for a in 1,2]
a = [a for a in (1, 2)]
#? int()
a[0]