84669 person learning
152542 person learning
20005 person learning
5487 person learning
7821 person learning
359900 person learning
3350 person learning
180660 person learning
48569 person learning
18603 person learning
40936 person learning
1549 person learning
1183 person learning
32909 person learning
ringa_lee
It seems that there was a bug before but it has been fixed now
Reference https://github.com/pandas-dev...
import pandas as pd df = pd.DataFrame({'A' : [1, 2, 3], 'B' : ['foo', 'bar', 'baz']}) df.to_excel('test.xlsx') print pd.read_excel('test.xlsx') # Out[28]: # A B # 0 1 foo # 1 2 bar # 2 3 baz print pd.read_excel('test.xlsx', names=['B','A']) # B A # 0 1 foo # 1 2 bar # 2 3 baz
It is the function of renaming the column name
It seems that there was a bug before but it has been fixed now
Reference https://github.com/pandas-dev...
It is the function of renaming the column name