If f and g are unary functions, f g 0 is evaluated as f(g(0))? Asking
because you didn't mention composition. That is, could we have `print
"hello", input "Name:"` instead of `print "hello", input("Name:")`?

Overall, I am against this because I like the "explicitness" of using
parenthesis for function calls, and have never found their presence to be
an issue. Additionally, I prefer when there is only one way of doing
something, even if I don't like the way itself, as that is one less thing
to think about.

The "the first argument cannot start with a parenthesis or bracket" part
(which is understandable) adds even more complexity to this.
_______________________________________________
Python-ideas mailing list -- python-ideas@python.org
To unsubscribe send an email to python-ideas-le...@python.org
https://mail.python.org/mailman3/lists/python-ideas.python.org/
Message archived at 
https://mail.python.org/archives/list/python-ideas@python.org/message/KJTYZU3ZRBJRNVOOFXXT3C2VUFMHXZPJ/
Code of Conduct: http://python.org/psf/codeofconduct/

Reply via email to