Advertisement
SonGuhun

Importando math 1 vez

Mar 23rd, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.10 KB | None | 0 0
  1. import math
  2.  
  3.  
  4. def raiz2(x):
  5.     return math.sqrt(x)
  6.  
  7. def hipotenusa(x,y):
  8.     return math.hypot(x,y)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement