car = {
"brand": "Ford",
"model": "Mustang",
"year": 1964
}
# the keys are like variables in dictionary which saves a value
x = car.keys()
print(x)
# keys in python
List_of_Students = {"Jim" : "Roll-32"+","+ "Priority-First",
"Yeasin": "Roll-33"+","+ "Priority-2nd",}
print(List_of_Students["Yeasin"])