Answers for "python programs on dictionary"

1

how to write a dict in pytohn

# get vs [] for retrieving elements
my_dict = {'name': 'Jack', 'age': 26}

# Output: Jack
print(my_dict['name'])

# Output: 26
print(my_dict.get('age'))
Posted by: Guest on October-24-2020
1

dictionary in python

Dict = {"name": 'Izhaan', "salary": 1234, "age": 23} 
print("nDictionary with the use of string Keys: ") 
print(Dict)
Posted by: Guest on November-18-2020

Python Answers by Framework

Browse Popular Code Answers by Language