3 Things to Consider Writing Pythonic Code
Hopefully catches some uncommon things that isn’t normally seen in most guides
1. None Types
As frequently documented, you’ll see checks for empty lists, empty tuples, Booleans and etc. using single if statements like below.
def func1(num: int):
if not myList: # instead of len(myList) == 0
myList.append(15)