30-Days-Of-Python
30-Days-Of-Python copied to clipboard
30 days of Python programming challenge is a step-by-step guide to learn the Python programming language in 30 days. This challenge may take more than100 days, follow your own pace. These videos may...
wrong vars
Right in the first paragraph you mention "month pythons..." the comedy skit. I believe you meant "Monty"
`f` missing in `f-string` in `first example of packing dictionaries` **`Section`**: Enumerate **`Line to update`**: print(`f`'The country {i} has been found at index {index}') **`Update`**: Added `f` in print statement
Updated syntax for `search`: Replaced `re.match()` to `re.search()`
### `f` missing in `f-string` in `first example of packing dictionaries` **`Section`**: **Packing dictionaries** **`Proposed change:`** def packing_person_info(**kwargs): # Printing dictionary items for key in kwargs: > print(`f`"{key} = {kwargs[key]}")...
[https://github.com/Asabeneh/30-Days-Of-Python/blob/master/05_Day_Lists/05_lists.md#unpacking-list-items](url) first_fruit, second_fruit, third_fruit, *rest = lst The variable should be fruits
upgrade in section on multiple decorators on single function, in print(greeting()) the output should be ['WELCOME', 'TO', 'PYTHON']