gpt4 book ai didi

python - 检查列表中当前引用值的另一个实例

转载 作者:行者123 更新时间:2023-11-30 23:04:18 24 4
gpt4 key购买 nike

wheels = [wheel_1,wheel_2,wheel_3,wheel_4,wheel_5]

for wheel in wheels:
while wheel in wheels.remove(wheel):

尝试检查列表是否包含重复项,因此我尝试将当前值与包含它的列表进行比较,减去该值。即使一个项目只在列表中出现一次,它仍然会被捕获,这让我认为 .remove 没有做我认为它正在做的事情。

最佳答案

为什么不直接使用 .count() 来检查重复项?

wheels = [wheel_1,wheel_2,wheel_3,wheel_4,wheel_5]

for wheel in wheels:
if wheels.count(wheel) > 1:
print("duplicate")

关于python - 检查列表中当前引用值的另一个实例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33771281/

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