I have a Pandas DataFrame like this :
Date Descriptive
0 2017-1-1 Time12:30 Id124562 American electronic commerce and cloud computing company based in Seattle
1 2017-1-2 Time12:40 Id124565 Amazon has separate retail websites for the United States
2 2017-1-3 Time12:45 Id124561 In 2020, Amazon will build a new downtown Seattle building
How can I generate a new DataFrame like this with Python?
Date time id descriptive
0 2017-1-1 12:30 124562 American electronic commerce and cloud computing company based in Seattle
1 2017-1-2 12:40 124565 Amazon has separate retail websites for the United States
2 2017-1-3 12:45 124561 In 2020, Amazon will build a new downtown Seattle building
PS: Sorry, I makeup this dataframe to represent the real data cleaning problem i met. Length of id is fixed to 6. Thanks a lot.