Hello,
I'm reading data from a device - and he return to me this format
and on the prpgram I'm using this format:
this is what I have done:
but the cut date is :
what is wrong?
Thanks ,
I'm reading data from a device - and he return to me this format
1 |
dec / 21 / 2021 |
1 |
2021 - 12 - 21 11 : 22 : 09 , 239 |
1 2 3 4 5 6 7 8 |
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!' ) |
1 2 3 |
dec / 21 / 2021 11 : 39 : 57 Just Date 00 / 21 / 21 Clock Error! |
Thanks ,