
June 10, 2020
5:49 a.m.
On 10/06/20 1:56 pm, Ricky Teachey wrote:
I have a question. Is there a very good reason that the language allows spaces between function names and the parentheses?
print (1,2,3)
Python, in common with many other languages, allows whitespace between any pair of lexical tokens. It would be very surprising to disallow it in just this one context. Also, some style guides require a space there, so changing it now would likely break a lot of code. -- Greg