Twist_Nemo

computational physics p-1.py

Apr 20th, 2021
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.12 KB | None | 0 0
  1. T = float(input(""))
  2.  
  3. R = 6371
  4.  
  5. G = 6.67e-11
  6.  
  7. M = 5.97e24
  8. h = (((G * M * T**2) / (4 * 3.1415**2)) / (1/3)) - R
  9. print(h)
Advertisement
Add Comment
Please, Sign In to add comment