Skip to content

Instantly share code, notes, and snippets.

@arsatiki
Created February 25, 2009 13:52
Show Gist options
  • Save arsatiki/70179 to your computer and use it in GitHub Desktop.
Save arsatiki/70179 to your computer and use it in GitHub Desktop.
def find_maxlen(values, count):
for i in range(count):
yield max(len(v[i][1]) for v in values)
shit = find_maxlen(marks.values(), len(data)) # Ehkä list() ympärille
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment