pandas读取excel转换科学计数法

    

 

import pandas as pd

file = r"E:\Python\python_Shell\6851-流量-10GE1_0_47.csv"

df = pd.read_csv(file, converters={" ": str})
for i in df.values:
    print(i[1], i[2])

 

posted @ 2022-10-14 16:43  邓聪聪  阅读(178)  评论(0编辑  收藏  举报