Skip to content

Instantly share code, notes, and snippets.

@Kanst
Created October 6, 2013 11:18
Show Gist options
  • Save Kanst/6852753 to your computer and use it in GitHub Desktop.
Save Kanst/6852753 to your computer and use it in GitHub Desktop.
for x in text:
if x != '\n':
sp = x.split()
out_text.append(sp[3])
max_sec = 0
for x in out_text:
if out_text.count(x) > max_sec:
max_sec = out_text.count(x)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment