Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created April 2, 2019 15:18
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/f7f5d0a58a08323a645a5ce1207c5d65 to your computer and use it in GitHub Desktop.
Save parzibyte/f7f5d0a58a08323a645a5ce1207c5d65 to your computer and use it in GitHub Desktop.
def get_day_name(number_of_day):
if number_of_day is 0:
return "Sunday"
elif number_of_day is 1:
return "Monday"
# Here more ifs...
else:
return "Unknow"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment