Python Forum
How can I compare 2 format of date?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How can I compare 2 format of date?
#1
Hello,
I'm reading data from a device - and he return to me this format
dec/21/2021
and on the prpgram I'm using this format:
2021-12-21 11:22:09,239
this is what I have done:
prtint(Device_TS)
 JustDate = str(StartTime).split(' ')[0]
            JustDate = datetime.datetime.strptime(JustDate, '%Y-%m-%d').strftime('%M/%d/%y')
            print('Just Date  ', JustDate)
            if JustDate not in TS1:
                print('Clock Error!')
            else:
                print('Clock OK!')
but the cut date is :
dec/21/2021 11:39:57
Just Date   00/21/21
Clock Error!
what is wrong?

Thanks ,
Reply
#2
Could you send an error that we can reproduce? Your code doesn't look like real code.
Reply
#3
import datetime
StartTime = datetime.datetime.now()
print(StartTime)
JustDate = str(StartTime).split(' ')[0]
print(JustDate)
JustDate = datetime.datetime.strptime(JustDate, '%Y-%m-%d').strftime('%M/%d/%y')
print('Just Date  ', JustDate)
TS1 = "dec/21/2021"
print(TS1)
if JustDate not in TS1:
    print('Clock Error!')
else:
    print('Clock OK!')
this is the output:

2021-12-21 14:01:29.733448
2021-12-21
Just Date   00/21/21
dec/21/2021
Clock Error!
what am I missing?
isn't 'M' stand for month in "words"?
Reply
#4
No, %M stands for Minutes. Month as locale abbreviated name is %b. Read https://docs.python.org/3/library/dateti...e-behavior
korenron likes this post
Reply
#5
I remeber %M for some reason ...

Thanks !
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Compare current date on calendar with date format file name Fioravanti 1 242 Mar-26-2024, 08:23 AM
Last Post: Pedroski55
  Python date format changes to date & time 1418 4 613 Jan-20-2024, 04:45 AM
Last Post: 1418
  Modifying a date format jehoshua 17 3,005 Oct-29-2022, 08:44 PM
Last Post: jehoshua
  Date format error getting weekday value Aggie64 2 1,427 May-29-2022, 07:04 PM
Last Post: Aggie64
  Convert Date to another format lonesoac0 2 1,678 Mar-17-2022, 11:26 AM
Last Post: DeaD_EyE
  Format SAS DATE Racer_x 0 996 Feb-09-2022, 04:44 PM
Last Post: Racer_x
  Date format and past date check function Turtle 5 4,271 Oct-22-2021, 09:45 PM
Last Post: deanhystad
  Print first day of the week as string in date format MyerzzD 2 2,027 Sep-29-2021, 06:43 AM
Last Post: MyerzzD
  String to Date format SAF 2 2,470 Apr-06-2021, 02:09 PM
Last Post: snippsat
  How to add previous date infront of every unique customer id's invoice date ur_enegmatic 1 2,239 Feb-06-2021, 10:48 PM
Last Post: eddywinch82

Forum Jump:

User Panel Messages

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