私はリストのリストを取って辞書に変換しようとしています。私は3かpython dictionary - dictへのリストの一覧
New_dicts['doug']['rating3']
を得るとき
New_dicts['sam']['rating1']
よう
yearend = [['empl','rating1','rating2','rating3'],['mike','4','4','5'],
['sam','3','2','5'],['doug','5','5','5']]
extract the employee names
employee = [item[0] for item in yearend] #select 1st item from each list
employee.pop(0) # pop out the empl
print(employee)
### output##################################################
##['mike', 'sam', 'doug']###################################
###Output###################################################
###extract the various rating types
yearend1 = yearend [:] # make a copy
rating = yearend1.pop(0) # Pop out the 1st list
rating.pop(0)
print(rating)
### output##################################################
##['rating1', 'rating2', 'rating3']#########################
###Output###################################################
# pick employee and rating and convert rating to numeric
empl_rating = {t[0]:t[1:] for t in yearend1}
for key,value in empl_rating.items():
value = list(map(int, value))
empl_rating[key] = value
print(empl_rating)
### output##################################################
##{'mike': [4, 4, 5], 'sam': [3, 2, 5], 'doug': [5, 5, 5]}##
###Output###################################################
以下のコードを参照してください私はdictの(New_dicts)の中に一緒に入れしようとしている以上、今はIAMのようなデータを抽出しました私は5を得る。私が苦労しているのは、どのようにこのデータをまとめるのか? {item[0] : todict(item[1:]) for item in your_list}
ところで、このゾルはあなたがインデックスにそれを望んでいたかオフで基づいています:あなたの問題を解決するために
これは、コード・書き込みサービスではありません。 [ask]を見てください –