Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
python sort date
#1
I am new to python and got a requirement to sort the content of the text file based on timestamp in reverse order. Below is the content of text file(in.txt)

2020/10/31:09:05:01 734691 445750 384860 557946
2020/10/31:15:05:01 734691 366500 315620 554140
2020/10/31:21:05:01 705959 177500 153041 513408

Below was written but getting the below error.

from datetime import datetime

with open('in.txt') as f:
     sorted_lines = sorted([l.rstrip() for l in f.readlines()],
                          key=lambda line: datetime.strptime(line.split(" ")[0], "%Y/%m/%d:%H:%M:%S"))
                            "%Y/%m/%d:%H:%M:%S"),reverse=True)
     for line in sorted_lines:
        print(line)
Error
key=lambda line: datetime.strptime(line.split(" ")[0], "%Y/%m/%d:%H:%M:%S"),reverse=True)
File "/usr/lib64/python2.7/_strptime.py", line 325, in _strptime
(data_string, format))
ValueError: time data '' does not match format '%Y/%m/%d:%H:%M:%S'

Unable to determine why the error is happening.Could please help.
Reply


Messages In This Thread
python sort date - by beginner2020 - Nov-04-2020, 04:51 PM
RE: python sort date - by buran - Nov-04-2020, 05:16 PM
RE: python sort date - by DeaD_EyE - Nov-04-2020, 05:18 PM
RE: python sort date - by beginner2020 - Nov-04-2020, 05:52 PM
RE: python sort date - by DeaD_EyE - Nov-04-2020, 06:02 PM
RE: python sort date - by beginner2020 - Nov-04-2020, 06:28 PM
RE: python sort date - by DeaD_EyE - Nov-05-2020, 01:14 PM
RE: python sort date - by deanhystad - Nov-04-2020, 05:23 PM
RE: python sort date - by DeaD_EyE - Nov-04-2020, 05:54 PM
RE: python sort date - by chrischarley - Nov-04-2020, 05:23 PM
RE: python sort date - by deanhystad - Nov-04-2020, 05:30 PM
RE: python sort date - by chrischarley - Nov-04-2020, 05:52 PM
RE: python sort date - by buran - Nov-04-2020, 06:33 PM
RE: python sort date - by beginner2020 - Nov-06-2020, 03:30 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Compare current date on calendar with date format file name Fioravanti 1 369 Mar-26-2024, 08:23 AM
Last Post: Pedroski55
  Python date format changes to date & time 1418 4 785 Jan-20-2024, 04:45 AM
Last Post: 1418
  How to see the date of installation of python modules. newbieAuggie2019 4 1,787 Mar-31-2023, 12:40 PM
Last Post: newbieAuggie2019
Photo a.sort() == b.sort() all the time 3lnyn0 1 1,395 Apr-19-2022, 06:50 PM
Last Post: Gribouillis
  Date format and past date check function Turtle 5 4,511 Oct-22-2021, 09:45 PM
Last Post: deanhystad
  How to sort values descending from a row in a dataframe using python sankarachari 1 1,468 Aug-16-2021, 08:55 AM
Last Post: jamesaarr
  How to add previous date infront of every unique customer id's invoice date ur_enegmatic 1 2,308 Feb-06-2021, 10:48 PM
Last Post: eddywinch82
  How to add date and years(integer) to get a date NG0824 4 2,978 Sep-03-2020, 02:25 PM
Last Post: NG0824
  What's the best way to sort this data with Python? xtrax 2 1,744 Mar-15-2020, 08:08 AM
Last Post: Larz60+
  Date from from excel to Python. atp_13 1 1,820 Nov-24-2019, 12:26 PM
Last Post: ibreeden

Forum Jump:

User Panel Messages

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