Facebook
From Speedy Sloth, 4 Years ago, written in Python.
Embed
Download Paste or View Raw
Hits: 142
  1. import math
  2. d = 800  # the distance
  3. g = 32.2  # gravitational constant in ft/sec**2
  4.  
  5. time = math.sqrt(2 * d / g)
  6. print(time, 's')
  7.