赞
踩
读取文件:
import pandas as pd df = pd.read_csv("路径\文件名称")
读取之后取出特定行、列:
# 第1行 print(df.iloc[0]) # 前3行 print(df.iloc