摘要: import pandas as pd students1 = pd.read_csv('C:/Temp/Students.csv', index_col='ID') students2 = pd.read_csv('C:/Temp/Students.tsv', sep='\t', index_col='ID') students3 = pd.read_csv('C:/Temp/Student... 阅读全文
posted @ 2019-06-21 20:58 Inserence 阅读(1237) 评论(0) 推荐(0) 编辑
摘要: import pandas as pd pd.options.display.max_columns = 999 videos = pd.read_excel('C:/Temp/Videos.xlsx', index_col='Month') # table = videos.transpose() table = videos.T print(table) 阅读全文
posted @ 2019-06-21 20:56 Inserence 阅读(211) 评论(0) 推荐(0) 编辑