Skip to content

Instantly share code, notes, and snippets.

@benawad
Created November 14, 2014 15:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save benawad/dcaa9e5e7593cb1203c3 to your computer and use it in GitHub Desktop.
Save benawad/dcaa9e5e7593cb1203c3 to your computer and use it in GitHub Desktop.
solution#2
import math
print "Enter a number and I will print that many decimal places of e"
places = int(raw_input('>'))
print str(math.e)[:places+2]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment