This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
d={'name':'karthi', | |
'age':7, | |
'city':'chennai', | |
} | |
#get(accessing using get method) | |
print(d.get("name")) # Output: karthi | |
#If key doesn't exists in the dictionary means ,returns None | |
print (d.get('rollno')) # Output: None | |
#default is mentioned. | |
print (d.get('rollno',"Not Available"))#Output:Not Available |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment