Skip to content

Commit facbbbd

Browse files
Steps to Learn Python Basics
1 parent 1055243 commit facbbbd

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

README.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@
22
Python Programs
33

44

5+
## Learn In This Order
6+
1. Basic Arithmetic
7+
2. Control Flow
8+
3. Taking User Input
9+
4. Working With Strings
10+
5. Typecasting
11+
6. Loops[For and While]
12+
7. Exception Handling
13+
8. Functions
14+
9. Lambdas
15+
10. OOP
16+
11. Data Structures: Lists, Dictionaries, Tuples and Sets
17+
518
## Important Concepts
619
1- Arrays in other programming languages are what we call lists in python
720
2- self keyword is a reference to an object your are curr in!!!!
@@ -199,4 +212,4 @@ phrase.find(phrase[::-1])
199212

200213
```python
201214
print(open("somefile.txt").read().replace("hi", "bye"))
202-
```
215+
```

0 commit comments

Comments
 (0)