python在陣列中新增一行資料的方法:
1、直接插入一行:
import pandas as pd
from pandas import dataframe
df3=dataframe(np.arange(16)
.reshape((4
,4))
,index=
['a'
,'b'
,'c'
,'d'
],columns=
['one'
,'two'
,'three'
,'four'])
# 新插入的行一定要加 index,不然會報錯
df3.loc[
'new']=
['a'
,'a'
,'a'
,'a'
]# 執行結果為
one two three four
a 012
3b 456
7c 8910
11d 12
1314
15new a a a a
2、新建乙個同樣的 dataframe, 然後合併兩個dataframe
df4 = pd.dataframe([6
,6,6
,6])
.t# 修改df4的column和df3的一致
df4.columns = df3.columns
# 把兩個dataframe合併,需要設定 ignore_index=true
df_new = pd.concat(
[df3,df4]
,ignore_index=
true
)# 執行結果
one two three four00
1231
4567
28910
1131213
1415
4 a a a a56
666
陣列 在陣列中查詢元素
description 輸入10個整數到乙個長度為10的整型陣列中,然後輸入乙個整數,檢視該整數是否在剛才得到的陣列中,如果在,輸出 found 如果不在,輸出 not found input 11 個整數 output 如果第11個整數在前10個整數中,則輸出found 如果第11個整數不在前10...
在陣列中查詢數字
在整型有序陣列中查詢想要的數字,查到了返回下標 折半查詢 define crt secure no warnings include include intmain int num scanf d num int left 0 int right 10 while left right else i...
PHP在陣列中新增乙個字段存放乙個陣列
作為喜歡偷懶的我來說,找乙個php自帶的函式是最省事的,但是我發現原來方法很多,但是也有很多坑。先定義乙個陣列和需要新增的東西給大家看看。定義乙個鍵值對形式的陣列。array test array a aa b bb 再定義乙個需要加進去的鍵值對,這個鍵值對也放在陣列中,也就是新增乙個字段 new ...