コンテンツへスキップ
メニュー
この質問にフラグが付けられました
3 返信
14697 ビュー

Hello All,

How to get keys and values both form dict?

For eg. i want "(u'option2', True): 3" for res.

res = {(False, True): 1, (u'option2', True): 3, (u'option1', True): 2}

Thanks in advance

アバター
破棄

Hi Pawan,

You need to use iteritems.

res = {(False, True): 1, (u'option2', True): 3, (u'option1', True): 2}

for key,value in res.iteritems():

print key, value

output:

(False, True) 1

(u'option2', True) 3

(u'option1', True) 2

Hope it helps,

Regards,

Mayank Gosai

If you want to use for python 3.

You have to use res.items() instead of res.iteritems().

For ex:

res = {(False, True): 1, (u'option2', True): 3, (u'option1', True): 2}

for key,value in res.items():

(print (key,value))

Output:

(False, True) 1

('option2', True) 3

('option1', True) 2

Thanks,

Mayank Gosai

最善の回答

Hi,

refer this:

https://stackoverflow.com/questions/8023306/get-key-by-value-in-dictionary

Accept answer if helpful..

Thank you.

アバター
破棄
関連投稿 返信 ビュー 活動
2
11月 22
12508
0
3月 21
24
1
1月 18
15539
1
2月 25
1086
0
11月 23
1342