#programming-tips
Read more stories on Hashnode
Articles with this tag
PEP 673 – Self Type · If you have been using Typehints in Python, you are already aware of how we use Types in Python, although keep in mind that the...
1. daily.dev | The Homepage Developers Deserve: daily.dev is the fastest-growing online community for developers to stay updated on the best developer...
Python Dictionary key must be immutable, why? · Note: If you are looking for a Full Stack Developer (Django+React), then connect with me on LinkedIn or...
Vim is beautiful, once you start using it, there is no coming back. · Introduction: Vim is a highly configurable, Open Source, Text Editor built to make...
Python List is amazing · Introduction: Do you know that Python has a built-in array module to declare arrays? You don't have to install NumPy, unless you...
Pretty Python, let's promise to be together our whole life · #1. if-else ternary operator: if 1==1 is True: print(True) else: print(False) #...