Re: [問題] 如何把資料寫入資料庫的一個新的column裡

作者: iftrush (綾絹姊)   2018-10-18 10:28:03
import numpy as np
import pandas as pd
frame = pd.DataFrame((np.arange(12) + 1).reshape(4,3),
columns = list('ABC'),
index = [1,2,3,4])
columns2 = list('ABCD')
frame2 = frame.reindex(columns = columns2)
lt = list([13,14,15,16])
frame2.loc[:,'D'] = lt
print(frame2)
結果:
A B C D
1 1 2 3 13
2 4 5 6 14
3 7 8 9 15
4 10 11 12 16
作者: handsomeLin (DoGLin)   2018-10-18 15:05:00
他是問資料庫...
作者: mychiux413 (小邱)   2018-10-21 22:29:00
pandas可以操作資料庫, 把做好的df給他to_sql就可以了

Links booklink

Contact Us: admin [ a t ] ucptt.com