Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created December 16, 2018 00:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/b718ae96a1ebdad7a674375ba7f5d148 to your computer and use it in GitHub Desktop.
Save parzibyte/b718ae96a1ebdad7a674375ba7f5d148 to your computer and use it in GitHub Desktop.
def obtener_nombre_dia(numero_dia):
if numero_dia is 0:
return "Domingo"
elif numero_dia is 1:
return "Lunes"
#Aquí más casos hasta el sábado...
else:
return "Desconocido"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment