|
1 | 1 | ## This repository includes the basic python concepts. |
2 | 2 |
|
3 | | -### 1. Variables |
| 3 | +### [1. Variables](https://github.com/Majid460/python_practice_part1/blob/main/src/variables/variables.py) |
4 | 4 | 1.1.1. Variables initialization |
5 | 5 | 1.2.1. Variables naming convention |
6 | 6 | 1.3.1. Variables printing |
|
9 | 9 | 1.6.1. Multiple named variables |
10 | 10 | 1.7.1. Multiple Assignments of Variables |
11 | 11 | 1.8.1. Re-assigning the variables |
12 | | -### 2. DataTypes |
13 | | -#### 2.1. Numbers |
| 12 | +### [2. DataTypes](https://github.com/Majid460/python_practice_part1/tree/main/src/datatypes) |
| 13 | +#### [2.1. Numbers](https://github.com/Majid460/python_practice_part1/blob/main/src/datatypes/numbers_in_python/numbers.py) |
14 | 14 | 2.1.1. Numbers in Python |
15 | 15 | 2.1.1. Types of Numbers |
16 | 16 | 2.1.1. Basic Arithmetic Operations |
|
35 | 35 | 2.2.14. Advanced Checks: isdecimal() vs isdigit(), isidentifier(), isprintable() |
36 | 36 | 2.2.15. Join and Strip usage |
37 | 37 | 2.2.16. Character Replacement using translate() and maketrans() |
38 | | - #### 2.3. Booleans |
| 38 | + #### [2.3. Booleans](https://github.com/Majid460/python_practice_part1/blob/main/src/datatypes/boolean/boolean.py) |
39 | 39 | 2.3.1. What are Booleans |
40 | 40 | 2.3.2. Boolean Expressions (`==`, `>`, `<`) |
41 | 41 | 2.3.3. `if` Condition with Boolean Result |
42 | 42 | 2.3.4. `bool()` Function Overview |
43 | 43 | 2.3.5. Values that Return `True` |
44 | 44 | 2.3.6. Values that Return `False` |
45 | 45 | 2.3.7. Class Example Returning False via `__len__` |
46 | | - #### 2.4. Type Casting |
47 | | - |
| 46 | + #### [2.4. Type Casting](https://github.com/Majid460/python_practice_part1/blob/main/src/datatypes/casting/casting.py) |
48 | 47 | 2.4.1. What is Type Casting? |
49 | 48 | 2.4.2. Using `int()`, `float()`, and `str()` |
50 | 49 | 2.4.3. Convert `int` to `str` |
51 | 50 | 2.4.4. Convert `float` to `int` |
52 | 51 | 2.4.5. Convert `str` to `float` |
53 | 52 | 2.4.6. Convert `int` to `float` |
54 | 53 |
|
55 | | -### 3. Operators |
56 | | -#### 3.1. Assignment Operators |
| 54 | +### [3. Operators] (https://github.com/Majid460/python_practice_part1/blob/main/src/operators/operators.py) |
| 55 | +#### [3.1. Assignment Operators](https://github.com/Majid460/python_practice_part1/blob/main/src/operators/operators.py) |
57 | 56 | 3.1.1. = Equal to |
58 | 57 | 3.1.2. += Add and Assign |
59 | 58 | 3.1.3. -= Subtract and Assign |
|
69 | 68 | 3.1.13. <<= Left Shift and Assign |
70 | 69 | 3.1.14. := Walrus Operator |
71 | 70 |
|
72 | | -##### 3.2. Logical Operators |
| 71 | +##### [3.2. Logical Operators](https://github.com/Majid460/python_practice_part1/blob/main/src/operators/operators.py) |
73 | 72 | 3.2.1. and Logical AND |
74 | 73 | 3.2.2. or Logical OR |
75 | 74 | 3.2.3. not Logical NOT |
76 | 75 |
|
77 | | -##### 3.3. Identity Operators |
| 76 | +##### [3.3. Identity Operators](https://github.com/Majid460/python_practice_part1/blob/main/src/operators/operators.py) |
78 | 77 | 3.3.1. 'is' Identity Equals |
79 | 78 | 3.3.2. 'is not' Identity Not Equals |
80 | 79 |
|
81 | | -##### 3.4. Membership Operators |
| 80 | +##### [3.4. Membership Operators](https://github.com/Majid460/python_practice_part1/blob/main/src/operators/operators.py) |
82 | 81 | 3.4.1. 'in' Check if present in sequence |
83 | 82 | 3.4.2. 'not in' Check if not present in sequence |
0 commit comments