Este escrito ha sido evaluado por especialistas así aseguramos la exactitud de nuestro post.
Ejemplo 1: funciones de Python
defmyFunction(say):#you can add variables to the functionprint(say)
myFunction("Hello")
age =input("How old are you?")
myFunction("You are years old!".format(age))#this is what you get:
Hello
How old are you?
>>11#lol my real age actually
You are 11 years old!
Ejemplo 2: cómo definir una función en Python
defexample():#This defines itprint("Example.")#This is the defined commands
example()#And this is the commands being run
Ejemplo 3: función en la función python
deffunction1():# outer functionprint("Hello from outer function")deffunction2():# inner functionprint("Hello from inner function")
function2()
function1()
Recuerda que tienes autorización de decir si te fue de ayuda.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)