Skip to content

Instantly share code, notes, and snippets.

@emberian
Created July 20, 2012 16:38
Show Gist options
  • Save emberian/3151736 to your computer and use it in GitHub Desktop.
Save emberian/3151736 to your computer and use it in GitHub Desktop.
crichardson@crichardson-lat:~$ python
Python 2.7.2+ (default, Oct 4 2011, 20:03:08)
[GCC 4.6.1] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> sum = 0
>>> for i in range(10):
... sum += i
...
>>> print sum
45
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment