>>106407547
>That's it?
Languages like C++ or Java have strict type checking whereas Python gives zero fucks.
This is why people both hate on and love Python
Its good habit to implement type annotations into your code. Take the following for example:
def IsAnonGay(anon:str="Anonymous")->bool:
return True
The function expects 'anon' to be a string, if none is provided there is a default value, and when calling this function you can expect a bool value