how to print dictionary value in python code example

Example 1: printing python dictionary values

#print keys and values from the dictionary

for k, v in dic.items():
  print(k, v)

Example 2: how to use dictionaries in python

student_data = {
  "name":"inderpaal",
  "age":21,
  "course":['Bsc', 'Computer Science']
}

#the keys are the left hand side and the values are the right hand side
#to print data you do print(name_of_dictionary['key_name'])

print(student_data['name']) # will print 'inderpaal'
print(student_data['age']) # will print 21
print(student_data['course'])[0]
#this will print 'Bsc' since that field is an array and array[0] is 'Bsc'

Example 3: dictionary in python

# Dictionaries in Python

ages = {"John": 43, "Bob": 24, "Ruth": 76} # Marked by { at beginning and a } at end

# ^^^ Has sets of keys and values, like the 'John' and 43 set. These two values must be seperated by a colon

# ^^^ Sets of values seperated by commas.