30-Days-Of-Python icon indicating copy to clipboard operation
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...

Results 388 30-Days-Of-Python issues
Sort by recently updated
recently updated
newest added

Thanks so much for creating this useful resource! Please see the minor bug fix below. If the count variable is not incremented within the conditional, the while loop will never...

hey Asabeneh , https://github.com/Asabeneh/30-Days-Of-Python/blob/master/10_Day_Loops/10_loops.md on this day you write a example of continue in loop ``` count = 0 while count < 5: if count == 3: continue print(count) count...

This line made me think the caret could be used for exponentiation, but apparently it's used for bit-wise xor https://appdividend.com/2020/06/10/python-xor-operator-example-bitwise-operator-in-python/amp/ ![image](https://user-images.githubusercontent.com/3586622/150649791-1ee6ac9a-b4ec-42c1-a601-01bd5fe648f5.png) Thank you

Updated the set name from even_numbers to odd_numbers since we are checking if odd and even numbers sets are disjoint sets

You can add some references like some complete courses , books pdfs , youtube playlist etc. I can help you in this.

Displaced outputs for find and rfind functions