-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpath_to_enlightenment.py
More file actions
42 lines (40 loc) · 1.17 KB
/
path_to_enlightenment.py
File metadata and controls
42 lines (40 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
"""The ordered path the seeker walks.
Each module is loaded and meditated upon in the order listed below. Earlier
koans build the vocabulary used by later ones, so do not skip ahead.
"""
KOAN_PATH = [
"koans.about_asserts",
"koans.about_none",
"koans.about_booleans",
"koans.about_numbers",
"koans.about_strings",
"koans.about_fstrings",
"koans.about_template_strings",
"koans.about_lists",
"koans.about_tuples",
"koans.about_dictionaries",
"koans.about_sets",
"koans.about_control_flow",
"koans.about_pattern_matching",
"koans.about_functions",
"koans.about_lambdas",
"koans.about_comprehensions",
"koans.about_generators",
"koans.about_iterators",
"koans.about_decorators",
"koans.about_classes",
"koans.about_inheritance",
"koans.about_dunder_methods",
"koans.about_properties",
"koans.about_dataclasses",
"koans.about_enums",
"koans.about_exceptions",
"koans.about_context_managers",
"koans.about_type_hints",
"koans.about_walrus",
"koans.about_collections",
"koans.about_itertools",
"koans.about_functools",
"koans.about_pathlib",
"koans.about_async",
]