Guest User

Untitled

a guest
Jan 22nd, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. # Definition of radius
  2. r = 192500
  3.  
  4. # Import radians function of math package
  5. from math import radians
  6.  
  7. # Travel distance of Moon if 12 degrees. Store in dist.
  8. dist = radians(12) * r
  9.  
  10. # Print out dist
  11. print(dist)
Add Comment
Please, Sign In to add comment