keys() python code example
Example 1: keys in python
car = {
"brand": "Ford",
"model": "Mustang",
"year": 1964
}
# the keys are like variables in dictionary which saves a value
x = car.keys()
print(x)
Example 2: python get dictionary keys
# To get all the keys of a dictionary use 'keys()'
newdict = {1:0, 2:0, 3:0}
newdict.keys()
# Output:
# dict_keys([1, 2, 3])