Skip to content

Instantly share code, notes, and snippets.

@javisantana
Last active November 17, 2021 07:28
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save javisantana/c038fe200be6669991366f5dd4a14560 to your computer and use it in GitHub Desktop.
Save javisantana/c038fe200be6669991366f5dd4a14560 to your computer and use it in GitHub Desktop.
import urllib,sys,csv;
print reduce(lambda p, new: (p[0] + (new - p[0])/p[1], p[1] + 1), map(float, (x['tip_amount'] for x in csv.DictReader(urllib.urlopen(sys.argv[1])))), (0, 1))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment