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...
There is an error in the example code in Day 10 exercise, `Break and Continue - Part 1` ```python count = 0 while count < 5: if count == 3:...
fixed a typo on line 83 as its a run time error ; from set to st
Typo correction in readme file for Day 1 intro from " Month Python " to " Monty "on line 102.
Month Python's Flying Circus to Monty Python's Flying Circus
Line 1221: Typo
Minor correct. Order of result was wrong swapped it
fix 2 errs
An error was made when defining the use of the range function it said 👉``` The The _range()_ function is used list of numbers. ``` which i corrected to be...
### In the python while loop example the code will only output 1,2,3 because the code after the ```continue``` statement will never be reached when ```count ===3 ``` ``` count...
https://github.com/Asabeneh/30-Days-Of-Python/pull/233