Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- #
- """
- MODULO: cualquier archivo .py
- BIBLIOTECA: es una carpeta con módulos que posee SI O SI el módulo
- __init__.py GENERALMENTE VACIO
- PAQUETE:es un carpeta con biblioteca y mòdulos con una estructura
- especial (archivos especiales) que permiten distribuir software
- dir
- paquete
- |________ __init__.py
- |________ modulo1.py
- |________ modulo4.py
- |________ subpaquete
- |__ __init__.py
- |__ modulo4.py
- |__ modulo3.py
- |___sumar
- |___ now()
- NAMESPACE: es la ruta para llegar a un módulo:
- EJ: namespace de módulo3: paquete.subpaquete
- """
- # import math # importa el modulo math completo
- # import math as m # importa todo math pero lo renombra, m.sqrt(22)
- # from math import sin, cos as coseno # importa sin y cos renombrandolo como coseno
- # from math import * # importa todas las funciones de math pero no hay que escribir math: sqrt(22)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement