Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Python DateTime is broken
#4
(Dec-31-2019, 06:22 PM)ndc85430 Wrote: What? Those outputs are literally the same. In any case, I don't believe you when you say it's broken, not least because if it was someone would have noticed by now. An example where the month and day are different:

$ python3
Python 3.6.2 (default, Oct  5 2017, 12:21:44) 
[GCC 5.3.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import datetime
>>> datetime.datetime(2019, 11, 10).strftime('%d/%m/%Y')
'10/11/2019'
>>>
Yeah, that's the problem doing
datetime.datetime(2019, 11, 10).strftime('%d/%m/%Y')
returns October 11, 2019 instead of 11 October 2019. But this:
datetime.datetime(2019, 31, 12).strftime('%d/%m/%Y')
should return 31/12/2019 instead of throwing an error.
It's interesting that datetime only isn't broken when the day and the month syntaxes are the same. It's a coincidence that I had this problem on 10/10, thus it shows the same thing and I didn't realise this.
Any solution, it seems that only does what I wanted the datetime module to do on 1/1, 2/2, 3/3, 4/4, 5/5, 6/6, 7/7, 8/8, 9/9, 10/10, 11/11 and 12/12
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,520 May-05-2022, 05:01 AM
Last Post: WagmoreBarkless
  Why is copying and pasting a block now broken? WagmoreBarkless 1 1,302 May-04-2022, 11:40 PM
Last Post: Larz60+
  BrokenPipeError: [Errno 32] Broken pipe throwaway34 6 9,892 May-06-2021, 05:39 AM
Last Post: throwaway34
  Python broken if moved to a different folder ecastrotns 3 2,581 Oct-26-2020, 10:53 PM
Last Post: ecastrotns
  STT: recognition connection failed: [Errno 32] Broken pipe GrahamBerends 0 5,268 Jul-18-2020, 11:00 PM
Last Post: GrahamBerends
  Broken interpreter? fcktheworld587 1 2,362 Dec-26-2019, 08:29 PM
Last Post: snippsat
  TypeError: unsupported operand type(s) for -: 'datetime.datetime' and 'str' findbikash 2 9,796 Sep-18-2019, 08:32 AM
Last Post: buran
  Arduino Read Update Datetime from Python jambuna35 0 2,563 Feb-03-2019, 05:13 PM
Last Post: jambuna35
  String being broken up into single characters ammorgan 1 2,428 Dec-31-2018, 07:06 AM
Last Post: Gribouillis
  Speech (audio file, wav) to Text - Broken pipe Shobha 1 3,861 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