For example I import csv file as data frame and work on some process on pandas
df = pd.read_csv('./label/101_5603_2019-05-02~2019-05-18.csv')
rest of codes to work on the data
How do I save the result to a new csv file with the names including 8 first character of the original csv files (101_5603.csv)? Thanks!