How to retieve value from a dictionary based on key ?











up vote
-1
down vote

favorite












I am stuck at this minor problem for quite some time and cannot understand why.



lets say I have a list :



test = ['1', '2', '3']


I convert this into dictionary using



test_dict =  { i : test[i] for i in range(0, len(test))}

{0: '1', 1: '2', 2: '3'}


Now when I access key based on value like this



print (a.get('1')) 


it gives me None. Any suggestions in this regard would be helpful.










share|improve this question






















  • Try print (test_dict[1]) #=> 2
    – iGian
    Nov 11 at 15:12












  • Dictionaries are a unidirectional mapping of keys to values.
    – timgeb
    Nov 11 at 15:14










  • I want to print the key not value. This would give 2 which the is the value of 1. I want to do it the other way round
    – Muss
    Nov 11 at 15:15















up vote
-1
down vote

favorite












I am stuck at this minor problem for quite some time and cannot understand why.



lets say I have a list :



test = ['1', '2', '3']


I convert this into dictionary using



test_dict =  { i : test[i] for i in range(0, len(test))}

{0: '1', 1: '2', 2: '3'}


Now when I access key based on value like this



print (a.get('1')) 


it gives me None. Any suggestions in this regard would be helpful.










share|improve this question






















  • Try print (test_dict[1]) #=> 2
    – iGian
    Nov 11 at 15:12












  • Dictionaries are a unidirectional mapping of keys to values.
    – timgeb
    Nov 11 at 15:14










  • I want to print the key not value. This would give 2 which the is the value of 1. I want to do it the other way round
    – Muss
    Nov 11 at 15:15













up vote
-1
down vote

favorite









up vote
-1
down vote

favorite











I am stuck at this minor problem for quite some time and cannot understand why.



lets say I have a list :



test = ['1', '2', '3']


I convert this into dictionary using



test_dict =  { i : test[i] for i in range(0, len(test))}

{0: '1', 1: '2', 2: '3'}


Now when I access key based on value like this



print (a.get('1')) 


it gives me None. Any suggestions in this regard would be helpful.










share|improve this question













I am stuck at this minor problem for quite some time and cannot understand why.



lets say I have a list :



test = ['1', '2', '3']


I convert this into dictionary using



test_dict =  { i : test[i] for i in range(0, len(test))}

{0: '1', 1: '2', 2: '3'}


Now when I access key based on value like this



print (a.get('1')) 


it gives me None. Any suggestions in this regard would be helpful.







python






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 11 at 15:09









Muss

296




296












  • Try print (test_dict[1]) #=> 2
    – iGian
    Nov 11 at 15:12












  • Dictionaries are a unidirectional mapping of keys to values.
    – timgeb
    Nov 11 at 15:14










  • I want to print the key not value. This would give 2 which the is the value of 1. I want to do it the other way round
    – Muss
    Nov 11 at 15:15


















  • Try print (test_dict[1]) #=> 2
    – iGian
    Nov 11 at 15:12












  • Dictionaries are a unidirectional mapping of keys to values.
    – timgeb
    Nov 11 at 15:14










  • I want to print the key not value. This would give 2 which the is the value of 1. I want to do it the other way round
    – Muss
    Nov 11 at 15:15
















Try print (test_dict[1]) #=> 2
– iGian
Nov 11 at 15:12






Try print (test_dict[1]) #=> 2
– iGian
Nov 11 at 15:12














Dictionaries are a unidirectional mapping of keys to values.
– timgeb
Nov 11 at 15:14




Dictionaries are a unidirectional mapping of keys to values.
– timgeb
Nov 11 at 15:14












I want to print the key not value. This would give 2 which the is the value of 1. I want to do it the other way round
– Muss
Nov 11 at 15:15




I want to print the key not value. This would give 2 which the is the value of 1. I want to do it the other way round
– Muss
Nov 11 at 15:15












1 Answer
1






active

oldest

votes

















up vote
1
down vote













Its a problem of type



test_dict =  { i : test[i] for i in range(0, len(test))}

{0: '1', 1: '2', 2: '3'}


The keys will be of integer type and not string type.



Try this out instead



print (a.get(1))


Edit:
To get the keys, you can flip the dictionary creation



test_dict =  { test[i] : i for i in range(0, len(test))}

print (a.get(1))
0





share|improve this answer























  • It gives the value of 1. I need to get key instead like if I do test_dict[1] it should give me 0
    – Muss
    Nov 11 at 15:20










  • Flip the dictionary creation around then. Check the answer I have edited it.
    – Sharath
    Nov 11 at 15:23











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53250065%2fhow-to-retieve-value-from-a-dictionary-based-on-key%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes








up vote
1
down vote













Its a problem of type



test_dict =  { i : test[i] for i in range(0, len(test))}

{0: '1', 1: '2', 2: '3'}


The keys will be of integer type and not string type.



Try this out instead



print (a.get(1))


Edit:
To get the keys, you can flip the dictionary creation



test_dict =  { test[i] : i for i in range(0, len(test))}

print (a.get(1))
0





share|improve this answer























  • It gives the value of 1. I need to get key instead like if I do test_dict[1] it should give me 0
    – Muss
    Nov 11 at 15:20










  • Flip the dictionary creation around then. Check the answer I have edited it.
    – Sharath
    Nov 11 at 15:23















up vote
1
down vote













Its a problem of type



test_dict =  { i : test[i] for i in range(0, len(test))}

{0: '1', 1: '2', 2: '3'}


The keys will be of integer type and not string type.



Try this out instead



print (a.get(1))


Edit:
To get the keys, you can flip the dictionary creation



test_dict =  { test[i] : i for i in range(0, len(test))}

print (a.get(1))
0





share|improve this answer























  • It gives the value of 1. I need to get key instead like if I do test_dict[1] it should give me 0
    – Muss
    Nov 11 at 15:20










  • Flip the dictionary creation around then. Check the answer I have edited it.
    – Sharath
    Nov 11 at 15:23













up vote
1
down vote










up vote
1
down vote









Its a problem of type



test_dict =  { i : test[i] for i in range(0, len(test))}

{0: '1', 1: '2', 2: '3'}


The keys will be of integer type and not string type.



Try this out instead



print (a.get(1))


Edit:
To get the keys, you can flip the dictionary creation



test_dict =  { test[i] : i for i in range(0, len(test))}

print (a.get(1))
0





share|improve this answer














Its a problem of type



test_dict =  { i : test[i] for i in range(0, len(test))}

{0: '1', 1: '2', 2: '3'}


The keys will be of integer type and not string type.



Try this out instead



print (a.get(1))


Edit:
To get the keys, you can flip the dictionary creation



test_dict =  { test[i] : i for i in range(0, len(test))}

print (a.get(1))
0






share|improve this answer














share|improve this answer



share|improve this answer








edited Nov 11 at 15:24

























answered Nov 11 at 15:14









Sharath

114




114












  • It gives the value of 1. I need to get key instead like if I do test_dict[1] it should give me 0
    – Muss
    Nov 11 at 15:20










  • Flip the dictionary creation around then. Check the answer I have edited it.
    – Sharath
    Nov 11 at 15:23


















  • It gives the value of 1. I need to get key instead like if I do test_dict[1] it should give me 0
    – Muss
    Nov 11 at 15:20










  • Flip the dictionary creation around then. Check the answer I have edited it.
    – Sharath
    Nov 11 at 15:23
















It gives the value of 1. I need to get key instead like if I do test_dict[1] it should give me 0
– Muss
Nov 11 at 15:20




It gives the value of 1. I need to get key instead like if I do test_dict[1] it should give me 0
– Muss
Nov 11 at 15:20












Flip the dictionary creation around then. Check the answer I have edited it.
– Sharath
Nov 11 at 15:23




Flip the dictionary creation around then. Check the answer I have edited it.
– Sharath
Nov 11 at 15:23


















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53250065%2fhow-to-retieve-value-from-a-dictionary-based-on-key%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Xamarin.iOS Cant Deploy on Iphone

Glorious Revolution

Dulmage-Mendelsohn matrix decomposition in Python