Python 2.7.5中没有+(只是空格或相邻字符串)的字符串连接?

时间:2014-02-04 06:11:03

标签: python

任何人都可以解释为什么这不仅仅是语法错误吗?

$ 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文档但是 没找到任何相关的东西。只是一个错误?

1 个答案:

答案 0 :(得分:3)

在解析阶段将相邻的字符串文字合并为一个。记录在案here