I have 4 folders and every folder has like 500 CSV files. I want to collect all the names of the CSV files in one CSV for visualization by python.
All CSV files have just one column. How can I split to multi columns the rows like this [2016 05 30:t5-45+09], (there is no comma here and no space)
I wanna put all of the information in column like:
year | month | day
2016 | 05 | 30
columns_name =['col1 ','col2','col3']
read=pd.read_csv("file path", header=None, names=columns_name)