gpt4 book ai didi

Python - 仅向列表添加一次

转载 作者:太空宇宙 更新时间:2023-11-03 14:54:30 26 4
gpt4 key购买 nike

我的问题是我只想将字符串“Karte1”添加到列表中一次。但是现在,字符串“Karte1”无限次地添加到列表中。希望你能帮助我:)

import random

Deck1 = []

def startgame():
try:
"Karte1" not in Deck1
if True:
Deck1.append("Karte1")
if False:
pass
except:
pass


while True:
startgame()
print(Deck1)

最佳答案

如果需要唯一值,可以使用集合。

但在您的情况下,只需将代码更改为:

if "Karte1" not in Deck1:
Deck1.append("Karte1")

编辑:

请注意,在您的 while 语句中,当您定义的函数名称为 startgame 时,您调用了函数 startgame2

关于Python - 仅向列表添加一次,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43614128/

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