Skip to content

Instantly share code, notes, and snippets.

@carlynorama
Last active April 25, 2020 20:09
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 carlynorama/110c366aeaa3838fa9960a31e4e920f3 to your computer and use it in GitHub Desktop.
Save carlynorama/110c366aeaa3838fa9960a31e4e920f3 to your computer and use it in GitHub Desktop.
Utility for Day of the Week
#!/usr/bin/env python3
#imports go here
import datetime
#functions go here
def printDay():
d = datetime.datetime.now()
#print(d.strftime("%A %d %B %Y"))
print(d.strftime("%A"))
#make it run
if __name__ == "__main__":
printDay()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment