Skip to content
This repository was archived by the owner on Aug 11, 2023. It is now read-only.

Commit bfeed82

Browse files
committed
Update
1 parent 720429f commit bfeed82

File tree

2 files changed

+35
-49
lines changed

2 files changed

+35
-49
lines changed

README.md

Lines changed: 35 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -6,27 +6,13 @@
66
- [Homeworks](/README-PYTHON-HOMEWORKS.md)
77

88
## Headings
9-
1. [Introduction](introduction/README.md)
10-
1. [Syntax](syntax/README.md)
11-
1. [Variables](concepts/variables/README.md)
12-
1. <details>
13-
<summary><strong>String</strong></summary>
14-
15-
- [Strings](/lessons/python/concepts/string)
16-
- [`encode, decode`](/lessons/python/concepts/string/encode-string.py)
17-
- [`strip, lstrip, rstrip`](/lessons/python/concepts/string/trim-string.py)
18-
- [`join, concatenation`](/lessons/python/concepts/string/concat-string.py)
19-
- [`endswith, startswith, find, rfind, index, rindex`](/lessons/python/concepts/string/search-string.py)
20-
- [`translate, maketrans, format, format_map`](/lessons/python/concepts/string/format-string.py)
21-
- [`partition, rpartition, splitlines, split, slice`](/lessons/python/concepts/string/split-string.py)
22-
- [`(title, capitalize), (lower, upper, swapcase, casefold), (center, ljust, rjust)`](/lessons/python/concepts/string/audit-string.py)
23-
- [`in, (istitle, islower, isupper), isspace, isprintable, isidentifier, (isascii, isalpha), (isalnum, isnumeric, isdecimal, isdigit)`](/lessons/python/concepts/string/check-string.py)
24-
- [`zfill, count, replace, len, expandtabs, multi-line, loop-over-characters, reverse`](/lessons/python/concepts/string/other-string-functions.py)
25-
- [Scape Chars `\t \f \" \n \r \b \oct \hex`](/lessons/python/concepts/string/scape-chars.py)
26-
</details>
27-
2. [Random](/lessons/python/concepts/random/general-random-functions.py)
9+
- ![](-/n.png) [Introduction](./concepts/introduction/README.md)
10+
- ![](-/n.png) [Syntax](./concepts/syntax/README.md)
11+
- ![](-/n.png) [Variables](./concepts/variables/README.md)
12+
- ![](-/p.png) [String](./concepts/strings/README.md)
13+
- [Random](/lessons/python/concepts/random/general-random-functions.py)
2814
- `random(), randint(), shuffle(), choice()`
29-
3. <details>
15+
- <details>
3016
<summary><strong>Operators</strong></summary>
3117

3218
- [Operators](/lessons/python/concepts/operators)
@@ -38,34 +24,34 @@
3824
6. [Membership](/lessons/python/concepts/operators/membership-operators.py) `in, not in`
3925
7. [Bitwise](/lessons/python/concepts/operators/bitwise-operators.py) `& | ^ ~ << >>`
4026
</details>
41-
4. Debugging (break point)
42-
5. <details>
27+
- Debugging (break point)
28+
- <details>
4329
<summary><strong>List</strong></summary>
4430
4531
- Ordered, Changeable, Indexed, Allow Duplicate
4632
- [`access, assign, iterate, list(), .append(), .insert(), .remove(), del, .pop(), .copy(), .extend(), .clear(), len(), .count(), slice, join, unpack, in, .index(), .reverse(), .sort()`](/lessons/python/concepts/collections/list-access.py)
4733
</details>
48-
6. <details>
34+
- <details>
4935
<summary><strong>Tuple</strong></summary>
5036
5137
- Ordered, Unchangeable, Indexed, Allow Duplicate
5238
- Tuples are **unchangeable**, or **immutable** so you cannot add or remove items from it
5339
- [`access, tuple with one item, tuple(), iterate, del completely, len(), .count(), slice, join, unpack, in, .index()`](/lessons/python/concepts/collections/tuple-access.py)
5440
</details>
55-
7. <details>
41+
- <details>
5642
<summary><strong>Set</strong></summary>
5743
5844
- Unordered, Unchangeable (By index, But you can add/remove), Unindexed, No Duplicate
5945
- [`access, len(), set(), in, .add(), .update(), (.remove(), .discard(), .pop(), del), .copy(), .clear(), (.union(), intersection, difference, symmetric_difference), (disjoint, subset, superset)`](/lessons/python/concepts/collections/set-access.py)
6046
- [`frozenset()`](/lessons/python/concepts/collections/set-frozen.py)
6147
</details>
62-
8. <details>
48+
- <details>
6349
<summary><strong>Dictionary</strong></summary>
6450
6551
- Ordered, Changeable, Key Value, No Duplicate
6652
- [`access, assign, .update(), dict(), .keys(), .values(), .items(), zip(), len(), .pop(), .popitem(), del, .clear(), .copy(), .fromkeys(), .setdefault())`](/lessons/python/concepts/collections/dict-access.py)
6753
</details>
68-
9. <details>
54+
- <details>
6955
<summary><strong>DataTypes</strong></summary>
7056
7157
- Numbers: [`Integer, Float, Complex`](/lessons/python/concepts/data-types/data-type-number.py)
@@ -77,10 +63,10 @@
7763
- Binary: [`Bytes, ByteArray, MemoryView`](/lessons/python/concepts/data-types/data-type-bytes.py)
7864
- `bytes` is immutable; however `bytearray` is mutable
7965
</details>
80-
10. Module
81-
11. Conversion, TypeCasting
82-
12. Input
83-
13. <details>
66+
- Module
67+
- Conversion, TypeCasting
68+
- Input
69+
- <details>
8470
<summary><strong>Keywords</strong></summary>
8571

8672
- [if, elif, else](/lessons/python/concepts/keywords/keywords-if-elif.py)
@@ -95,14 +81,14 @@
9581
- [with](/lessons/python/concepts/keywords/keywords-with.py) <sub>[Optonal]</sub>
9682
- [yield](/lessons/python/concepts/keywords/keywords-yield.py) <sub>[Optonal]</sub>
9783
</details>
98-
15. [Comperhension](/lessons/python/concepts/collections/comperhension.py)
99-
16. Scope, Globals, Locals
84+
- [Comperhension](/lessons/python/concepts/collections/comperhension.py)
85+
- Scope, Globals, Locals
10086
- [`locals(), globals()`](/lessons/python/concepts/variables/scope.py)
101-
17. [Read File, Write File](/lessons/python/examples/sample/file/read-write-file.py), [Pickle](/lessons/python/examples/sample/file/read-write-pickle.py)
102-
18. Math
103-
19. [Date, Time](/lessons/python/concepts/date-time/date-time.py)
104-
14. [Function, Method, Lambda](/lessons/python/concepts/object-oriented/types-of-methods.py)
105-
20. [OOP](/lessons/python/concepts/object-oriented/README.md)
87+
- [Read File, Write File](/lessons/python/examples/sample/file/read-write-file.py), [Pickle](/lessons/python/examples/sample/file/read-write-pickle.py)
88+
- Math
89+
- [Date, Time](/lessons/python/concepts/date-time/date-time.py)
90+
- [Function, Method, Lambda](/lessons/python/concepts/object-oriented/types-of-methods.py)
91+
- [OOP](/lessons/python/concepts/object-oriented/README.md)
10692
- Class, Object
10793
- Constructor
10894
- ToString, Representation
@@ -118,19 +104,19 @@
118104
- [Operator Overloading](/lessons/python/concepts/operators/operator-overload.py) <sub>[OPTIONAL]</sub>
119105
- Getter, Setter ???
120106
- [Enum](/lessons/python/concepts/enum/color-enum.py)
121-
1. [Eval, Exec](/lessons/python/concepts/advanced/eval-exec.py)
122-
1. [`*argv`, `**kwargs`](/lessons/python/concepts/advanced/argv-kwargs.py)
123-
1. [Sys](/modules/sys/README.md)
124-
1. [OS](/modules/os/README.md)
125-
1. [Assertion](/lessons/python/concepts/advanced/simple-assertion.py)
126-
1. [Generator](/lessons/python/concepts/advanced/simple-generator.py)
107+
- [Eval, Exec](/lessons/python/concepts/advanced/eval-exec.py)
108+
- [`*argv`, `**kwargs`](/lessons/python/concepts/advanced/argv-kwargs.py)
109+
- [Sys](/modules/sys/README.md)
110+
- [OS](/modules/os/README.md)
111+
- [Assertion](/lessons/python/concepts/advanced/simple-assertion.py)
112+
- [Generator](/lessons/python/concepts/advanced/simple-generator.py)
127113
----
128-
1. [Test](concepts/test/README.md)
129-
1. [PIP](/lessons/python/installation/README-PIP.md)
130-
1. [Decorator](/lessons/python/concepts/advanced/simple-decorator.py)
131-
1. [Reflection](/lessons/python/concepts/advanced/simple-reflection.py)
132-
1. [Regular Expression](/concepts/regex/README.md)
133-
1. [CSV](concepts/documents/csv/README.md)
114+
- [Test](concepts/test/README.md)
115+
- [PIP](/lessons/python/installation/README-PIP.md)
116+
- [Decorator](/lessons/python/concepts/advanced/simple-decorator.py)
117+
- [Reflection](/lessons/python/concepts/advanced/simple-reflection.py)
118+
- [Regular Expression](/concepts/regex/README.md)
119+
- [CSV](concepts/documents/csv/README.md)
134120

135121

136122
### Optional

concepts/introduction/README.md

Whitespace-only changes.

0 commit comments

Comments
 (0)