Skip to content

Instantly share code, notes, and snippets.

@pandanote-info
Created August 28, 2022 11:39
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
現在のローカル時刻をISO8601フォーマットで表示するためのPython3のプログラム(その1)。
#!/usr/bin/python
#
# See https://sidestory.pandanote.info/datetime_in_iso8601.html
#
import datetime
print(datetime.datetime.now().astimezone().isoformat())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment