dictionary function in python code example

Example 1: dictionary in python

tel = {'jack': 4098, 'sape': 4139}
tel['guido'] = 4127
print(tel)
# OUTPUT {'jack': 4098, 'sape': 4139, 'guido': 4127}
print(tel['jack'])
# OUTPUT 4098
del tel['sape']
tel['irv'] = 4127
print(tel)
# OUTPUT {'jack': 4098, 'guido': 4127, 'irv': 4127}
print(list(tel))
# OUTPUT ['jack', 'guido', 'irv']
print(sorted(tel))
# OUTPUT ['guido', 'irv', 'jack']
print('guido' in tel)
# OUTPUT True
print('jack' not in tel)
# OUTPUT False

Example 2: all dictionary functions in python

clear() - Removes all the elements from the dictionary
copy() - Returns a copy of the dictionary
fromkeys() - Returns a dictionary with the specified keys and value
get() - Returns the value of the specified key
items() - Returns a list containing a tuple for each key value pair
keys() - Returns a list containing the dictionary's keys
pop() - Removes the element with the specified key
popitem() - Removes the last inserted key-value pair
setdefault() - Returns the value of the specified key. If the key does not exist: insert the key, with the specified value
update() - Updates the dictionary with the specified key-value pairs
values() - Returns a list of all the values in the dictionary

Example 3: dictionary in python

d = {'key1':'value1','key2':'value2'}
print(d) # to print full dictionary
l=d.keys
print(l)   # to print keys
b=d.values
print(b)#to print values in dictionary

Example 4: python dictionary functions

#Dictionary methods

clear() - Removes all the elements from the dictionary
copy() - Returns a copy of the dictionary
fromkeys() - Returns a dictionary with the specified keys and value
get() - Returns the value of the specified key
items() - Returns a list containing a tuple for each key value pair
keys() - Returns a list containing the dictionary's keys
pop() - Removes the element with the specified key
popitem() - Removes the last inserted key-value pair
setdefault() - Returns the value of the specified key. If the key does not exist: insert the key, with the specified value
update() - Updates the dictionary with the specified key-value pairs
values() - Returns a list of all the values in the dictionary

Example 5: dictionary in python

my_dict = {"Key": "Value"}
# Dictionary format

print(my_dict["Key"])
# Prints out "Value"

my_animals = {"Dog": "Percy",
              "Cat": "Fluffy",
              "Turtle": "Bennedict"}
# Multiple items in a dictionary, all separated by a comma

for animal in my_animals:
  print(my_animals[animal])
# Prints the names of each of the pets