I have some problem to convert date in python
.
For example you can see on the csv
file, at the index 0 for the column "created_date", I have the value "1550740786000"
.
I would like the convert this date in a more "traditional form"
I tried to use the code below :
Input:
time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(int(pd_testData_filtered["created_at"].iloc[0])))
Output:
51109-10-14 02:13:20
This tweet has been published at 14:29 20/02/2019
Could someone help me?
Best regards.