Skip to content

Instantly share code, notes, and snippets.

@tombrad
Created January 28, 2013 23:01
Show Gist options
  • Save tombrad/4660108 to your computer and use it in GitHub Desktop.
Save tombrad/4660108 to your computer and use it in GitHub Desktop.
aprenda python en 3 días
largest = -1
print "Before", largest
for value in [3,41,12,9,74,15] :
if value > largest :
largest = value
print largest,value
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment