Skip to content

Commit 2cb424e

Browse files
authored
Update README.md
1 parent f03020e commit 2cb424e

File tree

1 file changed

+10
-11
lines changed

1 file changed

+10
-11
lines changed

README.md

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## This repository includes the basic python concepts.
22

3-
### 1. Variables
3+
### [1. Variables](https://github.com/Majid460/python_practice_part1/blob/main/src/variables/variables.py)
44
1.1.1. Variables initialization
55
1.2.1. Variables naming convention
66
1.3.1. Variables printing
@@ -9,8 +9,8 @@
99
1.6.1. Multiple named variables
1010
1.7.1. Multiple Assignments of Variables
1111
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)
1414
2.1.1. Numbers in Python
1515
2.1.1. Types of Numbers
1616
2.1.1. Basic Arithmetic Operations
@@ -35,25 +35,24 @@
3535
2.2.14. Advanced Checks: isdecimal() vs isdigit(), isidentifier(), isprintable()
3636
2.2.15. Join and Strip usage
3737
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)
3939
2.3.1. What are Booleans
4040
2.3.2. Boolean Expressions (`==`, `>`, `<`)
4141
2.3.3. `if` Condition with Boolean Result
4242
2.3.4. `bool()` Function Overview
4343
2.3.5. Values that Return `True`
4444
2.3.6. Values that Return `False`
4545
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)
4847
2.4.1. What is Type Casting?
4948
2.4.2. Using `int()`, `float()`, and `str()`
5049
2.4.3. Convert `int` to `str`
5150
2.4.4. Convert `float` to `int`
5251
2.4.5. Convert `str` to `float`
5352
2.4.6. Convert `int` to `float`
5453

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)
5756
3.1.1. = Equal to
5857
3.1.2. += Add and Assign
5958
3.1.3. -= Subtract and Assign
@@ -69,15 +68,15 @@
6968
3.1.13. <<= Left Shift and Assign
7069
3.1.14. := Walrus Operator
7170

72-
##### 3.2. Logical Operators
71+
##### [3.2. Logical Operators](https://github.com/Majid460/python_practice_part1/blob/main/src/operators/operators.py)
7372
3.2.1. and Logical AND
7473
3.2.2. or Logical OR
7574
3.2.3. not Logical NOT
7675

77-
##### 3.3. Identity Operators
76+
##### [3.3. Identity Operators](https://github.com/Majid460/python_practice_part1/blob/main/src/operators/operators.py)
7877
3.3.1. 'is' Identity Equals
7978
3.3.2. 'is not' Identity Not Equals
8079

81-
##### 3.4. Membership Operators
80+
##### [3.4. Membership Operators](https://github.com/Majid460/python_practice_part1/blob/main/src/operators/operators.py)
8281
3.4.1. 'in' Check if present in sequence
8382
3.4.2. 'not in' Check if not present in sequence

0 commit comments

Comments
 (0)