Skip to content

Commit

Permalink
update README (#124)
Browse files Browse the repository at this point in the history
* Add using-pass.py to the List of available tutorials in README.md

* Add recursive_func.py to the List of available tutorials in README.md

* Add Decorators tutorials to the List of available tutorials in README.md

* Add Sets tutorials to the List of available tutorials in README.md

* Add String formatting tutorials to the List of available tutorials in README.md

* Add Tuples tutorials to the List of available tutorials in README.md
  • Loading branch information
endrasww authored Oct 6, 2022
1 parent 6fb8c43 commit af75c1d
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 @@ -46,8 +46,11 @@ Each file contains:
|How while-loop works | [while-loops.py](loops/while-loops.py) |
|How to break in a loop | [using-break.py](loops/using-break.py) |
|How to continue in a loop | [using-continue.py](loops/using-continue.py) |
|How to pass in a loop | [using-pass.py](loops/using-pass.py) |
| **Functions** |
|How to declare and call functions | [using-functions.py](functions/using-functions.py) |
|How to declare and call functions | [using-functions.py](functions/using-functions.py) |
|How to make a recursive functions | [recursive_func.py](functions/recursive_func.py) |
|How to make a lambda functions | [lambda-functions.py](functions/lambda-functions.py) |
| **Common built-in functions** |
|How enumerate works | [enumerate.py](common-built-in-functions/enumerate.py) |
|How input works | [input.py](common-built-in-functions/input.py) |
Expand All @@ -71,3 +74,13 @@ Each file contains:
|How to iterate over a dictionary | [iterating-over-dictionaries.py](dictionaries/iterating-over-dictionaries.py)|
|Basic tutorial on dictionaries | [using-dictionaries-basic.py](dictionaries/using-dictionaries-basic.py) |
|Advanced tutorial on dictionaries | [using-dictionaries-advanced.py](dictionaries/using-dictionaries-advanced.py)|
| **Decorators** |
|How to use decorator | [timer.py](decorators/timer.py) |
| **Sets** |
|How to create a set | [creating-sets.py](sets/creating-sets.py) |
|How to modify a set | [modify-sets.py](sets/modify-sets.py) |
|How to remove set elements | [remove-set-elements.py](sets/remove-set-elements.py) |
| **String formatting** |
|How to use f-strings | [fstrings.py](string-formatting/fstrings.py) |
| **Tuples** |
|Basic tuples | [tuples-basic.py](tuples/tuples-basic.py) |

0 comments on commit af75c1d

Please sign in to comment.