-
Notifications
You must be signed in to change notification settings - Fork 119
Expand file tree
/
Copy pathmkdocs.yml
More file actions
72 lines (72 loc) · 2.33 KB
/
mkdocs.yml
File metadata and controls
72 lines (72 loc) · 2.33 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
site_name: python-by-examples
site_url: https://python-by-examples.readthedocs.io
repo_url: https://github.com/devops-by-examples/Python
strict: true
theme:
name: material
palette:
primary: indigo
font:
text: 'Roboto'
logo: 'assets/images/logo.png'
extra_css:
- 'assets/extra.css'
markdown_extensions:
- codehilite
- admonition
- toc:
permalink: true
nav:
- About: index.md
- Variables:
- Introduction: variables/introduction.md
- Operators:
- Introduction: operators/introduction.md
- Arithmetic: operators/arithmetic.md
- Assignment: operators/assignment.md
- Logical: operators/logical.md
- Relational: operators/relational.md
- Identity: operators/identity.md
- Membership: operators/membership.md
- Bitwise: operators/bitwise.md
- Precedence: operators/precedence.md
- Data Types:
- Introduction: datatypes/introduction.md
- Strings:
- Introduction: datatypes/strings/strings.md
- List:
- Introduction: datatypes/list/list.md
- Methods: datatypes/list/list_methods.md
- Questions: datatypes/list/list_exercise.md
- Tuple:
- Introduction: datatypes/tuple/tuple.md
- Questions: datatypes/tuple/tuple_exercise.md
- Set:
- Introduction: datatypes/set/set.md
- Methods: datatypes/set/set_methods.md
- Questions: datatypes/set/set_exercise.md
- Dict:
- Introduction: datatypes/dict/dict.md
- Methods: datatypes/dict/dict_methods.md
- Questions: datatypes/dict/dict_exercise.md
- Loops:
- Introduction: loops/introduction.md
- While: loops/while.md
- For: loops/for.md
- Questions: loops/problems.md
- Comprehensions:
- Introduction: comprehensions/introduction.md
- List Comprehension:
- Introduction: comprehensions/listcomprehension/introduction.md
- Dictionary Comprehension:
- Introduction: comprehensions/dictionarycomprehension/introduction.md
- Set Comprehensions:
- Introduction: comprehensions/setcomprehensions/introduction.md
- Generator Comprehensions:
- Introduction: comprehensions/generatorcomprehensions/introduction.md
- File Operations:
- Introduction: file_handling/introduction.md
- Python Modules:
- Introduction: python_modules/introduction.md
- Exception:
- Introduction: exceptional_handling/introduction.md