Skip to content

Instantly share code, notes, and snippets.

@veiset
Last active August 29, 2015 14:10
Show Gist options
  • Save veiset/5b295111c3c4de4de9f8 to your computer and use it in GitHub Desktop.
Save veiset/5b295111c3c4de4de9f8 to your computer and use it in GitHub Desktop.
with open('kilma_data_blindern.txt', 'r') as f:
data = [fields for fields
in [l.strip().split() for l in f.readlines()]
if len(fields) >= 2
if fields[1][3:5] == "12"]
print min(data, key=lambda x: float(x[3].replace(",", ".")))[1]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment