Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Python DateTime is broken
#9
(Jan-02-2020, 11:07 PM)10OctNotOct10a1 Wrote: Why is it in year month day order? TIL Python dates are in the same order as the date in Japan.

In my country, it's either year day month or day month year.
Maybe is something that common to use in Japan,but official national standards is JIS X 0301.
ISO 8601
Quote:Extensions according to national standards
There is Japanese Industrial Standard JIS X 0301 (former JIS C 6262), and the translation of ISO 8601 is JIS X 0301
The date is represented in the basic format "YY.MM.DD"
(for example, the year, month, and day are separated by a hyphen , such as 2019-06-23
If want more and better option for standard formats or time-zones use Pendulum
>>> import pendulum
>>> 
>>> now = pendulum.now('Asia/Tokyo')
>>> now
DateTime(2020, 1, 3, 16, 36, 25, 399457, tzinfo=Timezone('Asia/Tokyo'))
>>> print(now)
2020-01-03T16:36:25.399457+09:00

>>> # Example of different formats
>>> print(now.to_rfc2822_string())
Fri, 03 Jan 2020 16:36:25 +0900

>>> print(now.to_rfc850_string())
Friday, 03-Jan-20 16:36:25 JST

>>> print(now.to_rfc3339_string())
2020-01-03T16:36:25.399457+09:00

>>> print(now.to_w3c_string())
2020-01-03T16:36:25+09:00

>>> now.to_iso8601_string()
'2020-01-03T16:36:25.399457+09:00'
Reply


Messages In This Thread
Python DateTime is broken - by 10OctNotOct10a1 - Dec-31-2019, 06:13 PM
RE: Python DateTime is broken - by ndc85430 - Dec-31-2019, 06:22 PM
RE: Python DateTime is broken - by 10OctNotOct10a1 - Jan-02-2020, 02:31 AM
RE: Python DateTime is broken - by ziliboba - Jan-01-2020, 12:08 AM
RE: Python DateTime is broken - by ichabod801 - Jan-02-2020, 03:09 AM
RE: Python DateTime is broken - by 10OctNotOct10a1 - Jan-02-2020, 11:07 PM
RE: Python DateTime is broken - by ichabod801 - Jan-02-2020, 11:13 PM
RE: Python DateTime is broken - by micseydel - Jan-02-2020, 11:50 PM
RE: Python DateTime is broken - by snippsat - Jan-03-2020, 07:54 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Why is copying and pasting a block now broken? WagmoreBarkless 2 1,403 May-05-2022, 05:01 AM
Last Post: WagmoreBarkless
  Why is copying and pasting a block now broken? WagmoreBarkless 1 1,242 May-04-2022, 11:40 PM
Last Post: Larz60+
  BrokenPipeError: [Errno 32] Broken pipe throwaway34 6 9,368 May-06-2021, 05:39 AM
Last Post: throwaway34
  Python broken if moved to a different folder ecastrotns 3 2,476 Oct-26-2020, 10:53 PM
Last Post: ecastrotns
  STT: recognition connection failed: [Errno 32] Broken pipe GrahamBerends 0 5,091 Jul-18-2020, 11:00 PM
Last Post: GrahamBerends
  Broken interpreter? fcktheworld587 1 2,279 Dec-26-2019, 08:29 PM
Last Post: snippsat
  TypeError: unsupported operand type(s) for -: 'datetime.datetime' and 'str' findbikash 2 9,635 Sep-18-2019, 08:32 AM
Last Post: buran
  Arduino Read Update Datetime from Python jambuna35 0 2,516 Feb-03-2019, 05:13 PM
Last Post: jambuna35
  String being broken up into single characters ammorgan 1 2,359 Dec-31-2018, 07:06 AM
Last Post: Gribouillis
  Speech (audio file, wav) to Text - Broken pipe Shobha 1 3,787 Nov-27-2018, 12:41 PM
Last Post: Larz60+

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020