python
1a = [(1, 'test', 1000, 'hello'), (2, 'test', 2000, 'hello'), (3, 'test', 3000, 'hello')] 2
上のタプルのリストをdict型のリストに変換したいと思っているのですが、変換するためのコードの書き方がわかりません。
また、タプルの中身は、ディクトのリストに変換後のvalueに当たるものが格納さえており、keyを
id, name, price, discriptionとして、以下のようなディクトのリストを出力したいです。
python
1[{id: 1, name: 'test', price: 1000, description: 'hello'}, {id: 2, name: 'test', price: 2000, description: 'hello'}, {id: 3, name: 'test', price: 3000, description: 'hello'}]
変換方法をお分かりの方、よろしくお願いします。
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/08/02 14:54