python value pairs code example
Example 1: 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.
Example 2: python key value pair list
student = {"first_name": "Henry", "last_name": "Smith", "age": 20} # key: value
print(student["first_name"])
>>> Henry