Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
以下のタプルのリストについては:
[('a',1),('b', 2)]
私はそれを次のように変換したい:
[{'a' : 1}, {'b', 2}]
これは辞書のリストです
lst = [{k: v} for k, v in lst]
lstタプルのリストはどこにありますか。
lst
[{t[0] : t[1]} for t in [('a',1),('b', 2)]]