Saltar al contenido

función def en el ejemplo de código de función python

Esta es la solución más acertada que te podemos aportar, pero primero mírala pausadamente y valora si se puede adaptar a tu trabajo.

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: funciones en python

#Function Tutoral:defhello():print("hello")"""To make a function, it needs def then nameOfFunction() and a : to 
make the function work, you don't need a closing tag, as long as there is
tabbed section."""defadd(a, b):#This time, there is two inputs for the function to prossess. 
  c = a + b 
  return c
"""What the function above does is you input 2 numbers, and then it returns 
#The Value c, Calling it is as simple as add(5, 1) 
#What return does, is it almost makes a varible. So you can do:
#70 + add(10, 20) and it will return with: 100. This is because it will
go 70 + 30, as the function returned 30 because the inputs were 10 and 20.""""""Functions can be called by code, as long as the function has already
been defined. Hope this helped you in your python journey!"""

¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)



Utiliza Nuestro Buscador

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *