Skip to content

Commit

Permalink
Coding away...
Browse files Browse the repository at this point in the history
  • Loading branch information
paraipan committed Apr 11, 2012
1 parent b836446 commit 3a485f3
Show file tree
Hide file tree
Showing 2 changed files with 62 additions and 37 deletions.
83 changes: 46 additions & 37 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 16 additions & 0 deletions ex33.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,19 @@
numbers.append(i)

i = i + 1
print "Numbers now: ", numbers
print "At the bottom i is %d" % i

print "The numbers: "

for num in numbers:
print num

def loop(sum):
while sum < 6:
print "At the top i is %d" % sum
numbers.append(sum)

sum = sum + 1
print "Numbers now: ", numbers
print "At the bottom i is %d" % sum

0 comments on commit 3a485f3

Please sign in to comment.