I have several types of date in Python Pandas.
1. 17/12/04 14:19:48.374835 < class 'str' >
2. 20100202072111 < class 'numpy.int64'>
3. 2.017120e+11 < class 'numpy.float64'>
4. 2018-04-04 AM 10:26:39 < class 'str'>
5. 17/12/18 13:00:04.204254 < class 'str'>
I have 5 different csv files.
It looks like df1['Timestamp'], df2['Timestamp'], df3['Timestamp'], df4['Timestamp'], df5['Timestamp'].
The column name in each csv file is as same as 'Timestamp', and data formatting is shown above.
A type of date is different, and there are different formatting even though the type is 'str' such as #4 and #5.
In this case, how can I change the these value to int type such as yyyymmddhhss?
I want to get rid of other microseconds, and estimated final result is like 201911202322
Everything's conducted in Python with Pandas.
strformat. But why as anint?