У вашего броузера проблема в совместимости с HTML5
Read from a CSV file and write to a CSV using Pandas in Python
1)Create a CSV file which you want to read
2)Save it in working directory
3)Using read_csv function in pandas we will read
4)Save it to data frame
5)Write it to a csv file using to_csv function in pandas
Below is the code :
import pandas as pb
pb.read_csv('read.csv')
df = pb.read_csv('read.csv')
df.to_csv('write.csv')
#dataScienceInPython ,#PandasPython,ReadAndWriteCsvPython