gpt4 book ai didi

在包含 unicode 字符串的列表上调用 remove() 时,Python 给出 UnicodeWarning

转载 作者:太空宇宙 更新时间:2023-11-04 06:36:35 27 4
gpt4 key购买 nike

我有两个包含 unicode 字符串的列表。我正在尝试从 availablesongs 中删除也出现在 recentsongs 中的每个元素。

以下代码导致了问题(为调试而注释掉了异常子句):

for x in recentsongs:
#try:
availablesongs.remove(x)
#except ValueError:
# pass

当列表包含纯 ASCII 字符串时,此代码工作正常,但当引入其他语言的字符时,它会失败:

UnicodeWarning: Unicode equal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
availablesongs.remove(x)
ValueError: list.remove(x): x not in list

错误来自 remove() 函数本身,这让我很困惑。我该如何解决这个问题?

最佳答案

我会做什么:

list(set(availablesongs)-set(recentsongs))

关于在包含 unicode 字符串的列表上调用 remove() 时,Python 给出 UnicodeWarning,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10149850/

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