鱼C论坛

 找回密码
 立即注册
查看: 1669|回复: 4

[已解决]不给逗号就在一起了??

[复制链接]
发表于 2021-8-11 10:04:02 | 显示全部楼层 |阅读模式
2鱼币
好家伙,我才发现这个问题
l='a'   'b'
答案是
l='ab'



不加逗号就在一起了吗 哈哈  这是为啥 我怎么都没听过
最佳答案
2021-8-11 10:04:03
本帖最后由 阿奇_o 于 2021-8-11 10:54 编辑

我也没见过,哈哈,没想到Python解释器还有这样的特性。。
估计解释器首先strip()掉多余的空格,留下的字符只要合法,就不会报错。
至于为什么它们会连在一起,还真不清楚,哈哈,这是啥解释器的逻辑,有没有大神可以解释一下
>>> l = 'a' 'b'
>>> l
'ab'
>>> 'a' 'b'
'ab'
>>> 'a'_'b'
SyntaxError: invalid syntax
>>> 1 2
SyntaxError: invalid syntax
>>>  
---------------补充-----------------
答案 好像在这里,(官方解释)对 模糊有歧义的空格,会采用"最长的合法字符串"作为"token"
https://docs.python.org/3/reference/lexical_analysis.html#other-tokens
Whitespace characters (other than line terminators, discussed earlier) are not tokens, but serve to delimit tokens.
Where ambiguity exists, a token comprises the longest possible string that forms a legal token, when read from left to right.


不知道我是否理解准确了,哈哈

最佳答案

查看完整内容

我也没见过,哈哈,没想到Python解释器还有这样的特性。。 估计解释器首先strip()掉多余的空格,留下的字符只要合法,就不会报错。 至于为什么它们会连在一起,还真不清楚,哈哈,这是啥解释器的逻辑,有没有大神可以解释一下 ---------------补充----------------- 答案 好像在这里,(官方解释)对 模糊有歧义的空格,会采用"最长的合法字符串"作为"token" https://docs.python.org/3/reference/lexical_ana ...
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2021-8-11 10:04:03 | 显示全部楼层    本楼为最佳答案   
本帖最后由 阿奇_o 于 2021-8-11 10:54 编辑

我也没见过,哈哈,没想到Python解释器还有这样的特性。。
估计解释器首先strip()掉多余的空格,留下的字符只要合法,就不会报错。
至于为什么它们会连在一起,还真不清楚,哈哈,这是啥解释器的逻辑,有没有大神可以解释一下
>>> l = 'a' 'b'
>>> l
'ab'
>>> 'a' 'b'
'ab'
>>> 'a'_'b'
SyntaxError: invalid syntax
>>> 1 2
SyntaxError: invalid syntax
>>>  
---------------补充-----------------
答案 好像在这里,(官方解释)对 模糊有歧义的空格,会采用"最长的合法字符串"作为"token"
https://docs.python.org/3/reference/lexical_analysis.html#other-tokens
Whitespace characters (other than line terminators, discussed earlier) are not tokens, but serve to delimit tokens.
Where ambiguity exists, a token comprises the longest possible string that forms a legal token, when read from left to right.


不知道我是否理解准确了,哈哈
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2021-8-11 11:29:24 | 显示全部楼层
阿奇_o 发表于 2021-8-11 10:33
我也没见过,哈哈,没想到Python解释器还有这样的特性。。
估计解释器首先strip()掉多余的空格,留下的字 ...

看了你的链接,看不懂,还不如看你的解释,哈哈哈,其实也没完全懂 ,哈哈哈
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2021-8-11 20:11:57 | 显示全部楼层
Python视为相乘
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2021-8-12 08:51:05 | 显示全部楼层

不行啊,哪有有字符和字符之间的相乘啊
>>> 'a'*'a'
Traceback (most recent call last):
  File "<pyshell>", line 1, in <module>
TypeError: can't multiply sequence by non-int of type 'str'
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-13 15:35

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表