sábado, 3 de abril de 2021

VALOR POR DEFECTO EN UNA FUNCIÓN


Tan bueno como w3shools  

https://learnpython.org/

apuntes python 3 con ejercicios 

Walter

En w3schools hay  html y css también, muy buenos.



"""

    Función con valor por defecto.

Puedes usar codingground python 3 como intérprete on line de python.

Pulsa en EXECUTE para ejecutar, arriba a la izquierda.

    


"""



def my_function(pais = "ERROR: Falta el parametro 'pais'"):

  print("Soy " + pais)

# Aqui acaba la funcion





my_function("Sueco")

my_function("Alemán")

my_function()

my_function("Chino")






https://learnpython.org/ walter tan bueno como w3schools

 T an bueno como w3schools   https://learnpython.org/  apuntes python 3 con ejercicios  Walter En w3schools hay  html y css también, muy bue...