Skip to content

Instantly share code, notes, and snippets.

@xb4dc0d3
Last active March 19, 2020 06:45
Show Gist options
  • Save xb4dc0d3/1054d1bd640e97baa72b01ef1ceab045 to your computer and use it in GitHub Desktop.
Save xb4dc0d3/1054d1bd640e97baa72b01ef1ceab045 to your computer and use it in GitHub Desktop.
from datetime import date
# Bad
x_time = date.now().isoformat()
# Good
currentDate = date.now().isoformat()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment