Skip to content

Instantly share code, notes, and snippets.

@A-Asror
Created April 25, 2023 12:37
Show Gist options
  • Save A-Asror/b99fdfbed3569ea744cc022b9592903e to your computer and use it in GitHub Desktop.
Save A-Asror/b99fdfbed3569ea744cc022b9592903e to your computer and use it in GitHub Desktop.
def convert_24hour_to_12hour(time: dt.time) -> str:
# 23:52:00 to 11:52:00
return time.strftime("%I%P")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment