学习笔记(03):实用主义学Python(小白也容易上手的Python实用案例)-实操:Pandas读写Excel...
立即学习:https://edu.csdn.net/course/play/27211/358129?utm_source=blogtoeduimportpandasaspd#引用pandas#创建字典df=pd.DataFrame({'id':[1,2,3],'name':['张三','李四','王五'],'age':[28,25,30]})#配置索引df=df.set_index('id')p