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...
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...
Annotation error
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/  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