Advertisement
Fhernd

importar-funcionalidad.py

Feb 10th, 2018
805
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.28 KB | None | 0 0
  1. import math
  2.  
  3. # Uso función seno:
  4. print(math.sin(90))
  5.  
  6.  
  7. # Importación de módulo math con el alias m:
  8. import math as m
  9.  
  10. print(m.cos(90))
  11.  
  12.  
  13. # Importación parcial de un módulo:
  14. from math import sin, pi
  15.  
  16. print(sin(pi/2))
  17.  
  18. # importar todo de un módulo:
  19. from math import *
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement