data = pd.read_csv('C:\Users\guohai\PycharmProjects\first\\23.CSV',header=None)
时间: 2023-09-26 21:07:16 浏览: 51
Python读取csv文件数据
This line of code reads a CSV file located at 'C:\Users\guohai\PycharmProjects\first\\23.CSV' into a Pandas DataFrame object named 'data'. The 'header=None' argument specifies that the CSV file does not contain column headers.
阅读全文