DestroyerOfStars

programming 3

May 31st, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. from math import sin, cos, pi
  2.  
  3. print(pi)
  4. print(cos(0.5))
  5.  
  6. x = sin(5)
  7. print(x)
  8.  
  9. y = 35
  10. print(round(x + y, 2))
Add Comment
Please, Sign In to add comment