任何人都可以解释为什么这不仅仅是语法错误吗?
$ python --version
Python 2.7.5
$ python
>>> 'a' + 'b' # string concatenation, as expected
'ab'
>>> 'a' 'b' # still string concatenation ?
'ab'
>>> "a"'b' # or even this ...
'ab'
>>> ""''""''""''""''""''"" # or this !?
''
我用Google搜索并搜索了python文档但是 没找到任何相关的东西。只是一个错误?