Skip to content

Commit

Permalink
Steps to Learn Python Basics
Browse files Browse the repository at this point in the history
  • Loading branch information
omarbelkady authored Mar 8, 2023
1 parent 1055243 commit facbbbd
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,19 @@
Python Programs


## Learn In This Order
1. Basic Arithmetic
2. Control Flow
3. Taking User Input
4. Working With Strings
5. Typecasting
6. Loops[For and While]
7. Exception Handling
8. Functions
9. Lambdas
10. OOP
11. Data Structures: Lists, Dictionaries, Tuples and Sets

## Important Concepts
1- Arrays in other programming languages are what we call lists in python
2- self keyword is a reference to an object your are curr in!!!!
Expand Down Expand Up @@ -199,4 +212,4 @@ phrase.find(phrase[::-1])

```python
print(open("somefile.txt").read().replace("hi", "bye"))
```
```

0 comments on commit facbbbd

Please sign in to comment.