In this section you learned that:

rank = 10
eggs = 12
people = 3
temperature = 10.2
rainfall = 5.98
elevation = 1031.88
message = "Welcome to our online shop!"
name = "John"
serial = "R001991981SW"
members = ["Sim Soony", "Marry Roundknee", "Jack Corridor"]
pixel_values = [252, 251, 251, 253, 250, 248, 247]
phone_numbers = {"John Smith": "+37682929928", "Marry Simpons": "+423998200919"}
volcano_elevations = {"Glacier Peak": 3213.9, "Rainer": 4392.1}
phone_numbers.keys()
phone_numbers.values()
vowels = ('a', 'e', 'i', 'o', 'u')
one_digits = (0, 1, 2, 3, 4, 5, 6, 7, 8, 9)
dir(str)
dir(list)
dir(dict)
dir(__builtins__)
help(str)
help(str.replace)
help(dict.values)