Skip to content

Instantly share code, notes, and snippets.

@royletron
Created March 16, 2013 12:33
Show Gist options
  • Save royletron/5176195 to your computer and use it in GitHub Desktop.
Save royletron/5176195 to your computer and use it in GitHub Desktop.
from array import *
a = array('i', [20, 15, 5])
b = 0
for i in a:
if i > b:
b = i
print(b)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment