jupyternotebook读取数据路径或者文件名有中文读取方法

import pandas as pd
data = open(r"文件路径")
df = pd.read_csv(data)

你可能感兴趣的:(笔记)