Advertisement
teslariu

func1

Dec 9th, 2021
933
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.44 KB | None | 0 0
  1. # Ejemplo de funciones
  2.  
  3. # funciones con argumentos y sin return
  4. def imprimir(lista):
  5.     for elemento in lista:
  6.         print(elemento)
  7.        
  8. def sumar(a,b):
  9.     print(a+b)
  10.  
  11.  
  12. nombres = ["Juan", "Tito","Ana"]
  13. numeros =  [1,2,3,4,5]
  14. paises = ["Argentina", "Chile","Bolivia","Peru"]
  15.  
  16. print("\nNombres")
  17. imprimir(nombres)
  18.  
  19. print("\nNumeros") 
  20. imprimir(numeros)
  21.  
  22. print("\nPaises")  
  23. imprimir(paises)
  24.  
  25. print(f"\nLa suma de 25 y 34 es:")
  26. sumar(25,34)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement