Answers for "dictionary pythnon"

2

dictionary python

dictionary = {
    "name": "Elie",
    "family name": "Carcassonne",
    "date of born": "01/01/2001",
    "list": ["hey", "hey"]
}
Posted by: Guest on November-10-2021
0

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