0
How does the get function work with a dictionary?
Iâve tested some things out and I canât find any pattern or logic. Pls help
2 Answers
+ 2
Hey,
I suspect you're referring to dict.get(). If that is the case, the following articles might help you to better understand it:
https://www.w3schools.com/JUMP_LINK__&&__python__&&__JUMP_LINK/ref_dictionary_get.asp
https://www.programiz.com/python-programming/methods/dictionary/get
0
details={name:"jasy",position:"developer",experience:3}
result=details.get(name,"unknown")
print(result)
GET method is used to look for a value of a key named "name",
it will return "unknown" if a key and its value not in a dictionary