資料處理踩過的坑1

2021-10-05 22:12:35 字數 696 閱讀 5015

python list列表查詢相同元素下標位置list_position_name=['網路工程師', '網路工程師',

'884-軟體測試工程師', '測試工程師', '軟硬體測試工程師', '測試工程師','網路工程師',

'軟體測試', '軟體測試(常州)']

list_price_positoin_address =

for i in list_position_name:

address_index = [x for x in range(len(list_position_name)) if list_position_name[x] == i] #len函式表示下標個數

#print(address_index)#返回下標列表

dict_address = dict(list_price_positoin_address)

print('dict_address',dict_address)

import pprint

l=[['2',[2,1,6]],['2',[2,3,1]],[3,'hh']]

d=dict(l)

pprint.pprint(d) #字典的key值是不可以重複的,如果重複預設取最後乙個value值

pprint.pprint(d[3])

'hh'

踩坑系列 python資料處理

最近利用python讀取txt檔案時遇到了乙個小問題,就是在計算兩個np.narray 型別的陣列時,出現了以下錯誤 typeerror ufunc subtract did not contain a loop with signature matching types dtype 作為乙個new...

大資料踩過的坑 Hive insert

我在對hive表資料清洗後,使用了如下sql將結果集插入到新錶中 insert into db name.table name 1 col 1,col2,col3 with temp table 1 as select id,col 2 from db name.table name 2 where...

git踩過的坑

4.git 修改當前的project的使用者名稱的命令為 git config user.name 你的目標使用者名稱 git 修改當前的project提交郵箱的命令為 git config user.email 你的目標郵箱名 如果你要修改當前全域性的使用者名稱和郵箱時,需要在上面的兩條命令中新增...