gpt4 book ai didi

python - 从元组转换时删除字符串中的空格时出错

转载 作者:行者123 更新时间:2023-12-01 01:47:45 24 4
gpt4 key购买 nike

word="testing"
tup_1=tuple(word)
word2=str(tup_1)
assert "('t','e','s','t','i','n','g')" == word2

它看起来只是正确的,但给出了断言错误。

Error

为什么会报错?谁能解释一下吗?

最佳答案

由于字符串不相等,因此出现错误。中间有空格:

>>> assert "('t','e','s','t','i','n','g')" == word2
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AssertionError
>>> assert "('t', 'e', 's', 't', 'i', 'n', 'g')" == word2
>>>

关于python - 从元组转换时删除字符串中的空格时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51074197/

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