Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # -*- coding: utf-8 -*-
- tupla_taller = ("Hola como estas", 19, 34.5, True)
- def saludar(nombre, mensaje="Hola"):
- print mensaje, nombre
- saludar(mensaje="Saludos", nombre="Juancho")
- def hola(nombre, mensaje):
- print mensaje,nombre
- hola("Uriel", 29)
- def funcion(nombre):
- return "Hola Mundo "+nombre
- def llamada_de_retorno(func=""):
- """Llamada de retorno a nivel global"""
- return globals()[func]()
- func = "funcion"
- print locals()["funcion"](func)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement