gpt4 book ai didi

python是字符串的运算符行为

转载 作者:太空狗 更新时间:2023-10-29 21:36:00 24 4
gpt4 key购买 nike

<分区>

我无法理解以下行为。我正在创建 2 个字符串,并使用 is 运算符对其进行比较。在第一种情况下,它的工作方式不同。在第二种情况下,它按预期工作。当我使用逗号或空格时,它显示 False is 比较时的原因是什么,当没有使用逗号或空格或其他字符时,它给出

Python 3.6.5 (default, Mar 30 2018, 06:41:53) 
[GCC 4.2.1 Compatible Apple LLVM 9.0.0 (clang-900.0.39.2)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> a = 'string'
>>> b = a
>>> b is a
True
>>> b = 'string'
>>> b is a
True
>>> a = '1,2,3,4'
>>> b = a
>>> b is a
True
>>> b = '1,2,3,4'
>>> b is a
False

是否有关于为什么 python 以不同方式解释字符串的可靠信息?我知道最初 ab 指的是同一个对象。然后 b 得到一个新对象,仍然 b is aTrue。理解这种行为并不容易混淆。

当我使用“string”时 - 它会产生相同的结果。当我使用 '1,2,3,4' 时出了什么问题 - 它们都是字符串。 case 1 和 case 2 有什么不同?即 is 运算符对字符串的不同内容产生不同的结果。

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com