<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">def funcion(nombre):
    return "Hola " + nombre


def llamada_de_retorno(func=""):
    if func in globals():
        if callable(globals()[func]):
            return globals()[func]("Antonio")
    else:
        return "FunciÃ³n no encontrada"


print(llamada_de_retorno("funcion"))


nombre_de_la_funcion = "funcion"
if nombre_de_la_funcion in locals():
    if callable(locals()[nombre_de_la_funcion]):
        print(locals()[nombre_de_la_funcion]("Facundo"))
    else:
        print("FunciÃ³n no encontrada")
</pre></body></html>