Alright, how do we all feel about the "parenthesisless functions calls" that have just been proposed on Python Ideas by Guido van Rossum? While the proposal is an early prototype and some of the details are not exactly clear yet, the main idea is to offer an alternative way of calling functions with one argument.
When you want to do this:
len("abc")
you'd also be able to do:
len "abc"
For anything other than calling a function with one argument, you'd still need parentheses.
The change is made possible by the new PEG parser that allows for simple backtracking and it's obviously partially fuelled by nostalgia:
print "Hello, I belong in Python 2"





( im desperate 😩 )