It's always good to know about the different notation types: infix, postfix and prefix. Then, it's good to know how and when your language of choice decides to enforce them! Extending your example in 3.6 at the REPL confuses me more!
I understand infix, prefix and postfix though I dont know what exactly python does. And BTW i tried both. And it confused me more too. I will add this too 😁😁😁
Sean Charles
shizzleishappenin
It's always good to know about the different notation types: infix, postfix and prefix. Then, it's good to know how and when your language of choice decides to enforce them! Extending your example in 3.6 at the REPL confuses me more!
>>> foo = 1, >>> print(type(foo)) <class 'tuple'> >>> print(type(1,)) <class 'int'>