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...
Change the statement where PI is refered to as a function instead of constant. As per python docs (https://docs.python.org/3/library/math.html), `math.pi` is a constant, not a function. So, it should be...
This PR addresses the indentation issue in the Day 9 section related to nested conditions. In the original content, the indentation was not aligned properly, which might confuse beginners since...
Fix issues of parsing file which shows error like: ```js countries_data = json.load(f) ^^^^^^^^ ```
Python30Days\04_Day_Strings\day_4.py", line 171, in print(challenge.digit()) # True ^^^^^^^^^^^^^^^ AttributeError: 'str' object has no attribute 'digit'. Did you mean: 'isdigit'?
Fixes #648 Made functional and typo corrections to the mentioned modules. @Asabeneh 