時光荏苒,再次找回了我的部落格園賬號,再次開始學習Python

网络好心人發表於2024-04-04
res = pd.DataFrame(columns=['name', 'salary'],)
print(res)

Empty DataFrame 空的建立表格
Columns: [name, salary] columns 代表列的開頭
Index: [] index索引代表行的開頭,沒有指定則為空的

結果如下:


res.loc[0] = ['jason', 1] # 建立索引為0的行資料 name為jason 薪資為1
res.loc[1] = ['oscar', 2] # 建立索引為0的行資料 name為oscar 薪資為2
如果loc【索引】已存在則修改目標行的資料如下:
res.loc[1] = ['kevin', 2]

name salary
0 jason 1
1 kevin 2


print(res)
res.to_excel('a.xlsx') # 寫入到名為‘a’的xlsx表格中
ret = pd.read_excel('a.xlsx')  #  讀取a表格
print(ret)

Unnamed:   0   name   salary
0        0   jason    1
1         1    kevin   2

res.to_excel('a.xlsx',index_col=0) # 加上當中的引數,則取消unname列

  name   salary
0  jason    1
1  kevin    2

Unnamed:   0   name   salary
0        0   jason    1
1         1    kevin   2



相關文章