Skip to content

Instantly share code, notes, and snippets.

@moonpatroller
Created June 10, 2017 18:35
Show Gist options
  • Save moonpatroller/4e1d0771242b4b949a43a8d9040d1914 to your computer and use it in GitHub Desktop.
Save moonpatroller/4e1d0771242b4b949a43a8d9040d1914 to your computer and use it in GitHub Desktop.
def readTimes():
with open("times.csv", newline = "") as saveFile:
reader = csv.reader(saveFile, delimiter=",")
return [float(row[0]) for row in reader]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment