gpt4 book ai didi

python - 如何在python中将字符串值转换为int值

转载 作者:太空宇宙 更新时间:2023-11-04 08:02:55 25 4
gpt4 key购买 nike

我正在尝试在 python 中制作二十一点游戏。例如 7s 值是 7,但是 jacks 值是 10,所以:

cards = ['ace','king','queen'....'3','2'

firstCard = random.choice(cards)

secondCard = random.choice(cards); remove.cards(firstCard)

print(int(firstCard) + int(secondCard))

完美适用于数字

我怎么能为 K 或 A 做...

最佳答案

可以使用字典,key为'ace', 'king', 'queen', values为对应的数值.根据您的游戏规则,您可以根据需要映射键和值。

mydict = {"ace": 1, "king": 13, "queen": 12}

num_of_queen = mydict["queen"] # gets the numeric value

关于python - 如何在python中将字符串值转换为int值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36825015/

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