Skip to content

Commit af75c1d

Browse files
authored
update README (inspirezonetech#124)
* 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
1 parent 6fb8c43 commit af75c1d

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
@@ -46,8 +46,11 @@ Each file contains:
4646
|How while-loop works | [while-loops.py](loops/while-loops.py) |
4747
|How to break in a loop | [using-break.py](loops/using-break.py) |
4848
|How to continue in a loop | [using-continue.py](loops/using-continue.py) |
49+
|How to pass in a loop | [using-pass.py](loops/using-pass.py) |
4950
| **Functions** |
50-
|How to declare and call functions | [using-functions.py](functions/using-functions.py) |
51+
|How to declare and call functions | [using-functions.py](functions/using-functions.py) |
52+
|How to make a recursive functions | [recursive_func.py](functions/recursive_func.py) |
53+
|How to make a lambda functions | [lambda-functions.py](functions/lambda-functions.py) |
5154
| **Common built-in functions** |
5255
|How enumerate works | [enumerate.py](common-built-in-functions/enumerate.py) |
5356
|How input works | [input.py](common-built-in-functions/input.py) |
@@ -71,3 +74,13 @@ Each file contains:
7174
|How to iterate over a dictionary | [iterating-over-dictionaries.py](dictionaries/iterating-over-dictionaries.py)|
7275
|Basic tutorial on dictionaries | [using-dictionaries-basic.py](dictionaries/using-dictionaries-basic.py) |
7376
|Advanced tutorial on dictionaries | [using-dictionaries-advanced.py](dictionaries/using-dictionaries-advanced.py)|
77+
| **Decorators** |
78+
|How to use decorator | [timer.py](decorators/timer.py) |
79+
| **Sets** |
80+
|How to create a set | [creating-sets.py](sets/creating-sets.py) |
81+
|How to modify a set | [modify-sets.py](sets/modify-sets.py) |
82+
|How to remove set elements | [remove-set-elements.py](sets/remove-set-elements.py) |
83+
| **String formatting** |
84+
|How to use f-strings | [fstrings.py](string-formatting/fstrings.py) |
85+
| **Tuples** |
86+
|Basic tuples | [tuples-basic.py](tuples/tuples-basic.py) |

0 commit comments

Comments
 (0)