We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1055243 commit facbbbdCopy full SHA for facbbbd
README.md
@@ -2,6 +2,19 @@
2
Python Programs
3
4
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
+
18
## Important Concepts
19
1- Arrays in other programming languages are what we call lists in python
20
2- self keyword is a reference to an object your are curr in!!!!
@@ -199,4 +212,4 @@ phrase.find(phrase[::-1])
199
212
200
213
```python
201
214
print(open("somefile.txt").read().replace("hi", "bye"))
202
-```
215
+```
0 commit comments