learn-python
learn-python copied to clipboard
📚 Playground and cheatsheet for learning Python. Collection of Python scripts that are split by topics and contain code examples with explanations.
#35 @rhoitjadhav @evaldez89 Initial repo file structure under ``src > design_patterns > SPECIFIC PATTERN > code example`` was created, I also adapted the readme file accordingly. Next step is to...
It would be very nice if you could implement design patterns in Python. I hope you are aware of these concepts. For more info please navigate to this [link](https://en.wikipedia.org/wiki/Software_design_pattern)
Output: https://github.com/cclauss/learn-python/actions Like #5 but using GitHub Actions instead of Travis CI.
I think it would help beginners to have a better understanding of python's data structures by comparing them with a table.
Hey, I have added a reference link for Python Syntax under References. I came upon this article while looking for resources to learn Python. This citation, in my opinion, will...
literal was written twice
Hello, I've noticed a small error in the comments of the string indexing example provided in the [src/data_types/test_strings.py]. The comment incorrectly refers to the sixth character of the string as...
The comment for assert word[5] == 'n' incorrectly states "Fifth character" while it actually checks the sixth character of the string word.