how to get the keys of a dictionary in python code example

Example 1: python list keys from dictionary

# Basic syntax:
list_of_keys = list(dictionary.keys())

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])

Example 3: get all keys in json object

var obj = {name: "Jeeva", age: "22", gender: "Male"}
console.log(Object.keys(obj))

Example 4: delete a key value pair from a dictionary in python

mydict = {'score1': 41, 'score2': 23, 'score3': 45}

del mydict['score2']
print(mydict)
{'score1': 41, 'score3': 45}

Example 5: python convert dict_keys to list

d = {1:1, 2:2, 3:3}
d_keys_list = list(d.keys())

Example 6: python get dictionary keys

d = {2:"hello"}
d.values()