1def one():
2 print('one hahah')
3
4def two():
5 print('two hahah')
6
7def the_count():
8 print('I am the count who likes to count')
9
10
11dictionary_name = {
12 'one': one, 'second_function': two, 'tree_yeah_i_know': the_count
13}
14
15
16dictionary_name['one']()
17
18dictionary_name['second_function']()
19
20dictionary_name['tree_yeah_i_know']()
21
22