Advertisement
repente

Untitled

Oct 22nd, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. import math
  2.  
  3. def gravitational_pull():
  4. G = 6.674 * math.pow(10,~11)
  5. m1 = 5.972 * math.pow(10,24)
  6. m2 = 10
  7. r = 100
  8. force = G * m1*m2 / r ** 2
  9. return force
  10.  
  11.  
  12.  
  13. ANSWER = gravitational_pull()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement