Dondon's Python and Django Note
2017年7月27日 星期四
Python - Convert list to dictionary with indexes - 將list轉為字典且將index設為字典的key
Version
Python version :Python 3.6.0 :: Anaconda 4.3.1 (64-bit)
System version :Windows 10
Code:
list1 = [
'A'
,
'B'
,
'C'
] dic1 = {k:v
for
k,v
in
enumerate(list1)} dic1
Result:
{0: 'A', 1: 'B', 2: 'C'}
沒有留言:
張貼留言
較新的文章
較舊的文章
首頁
訂閱:
張貼留言 (Atom)
沒有留言:
張貼留言