试图制作炸弹分散文本游戏

时间:2016-12-17 09:50:40

标签: python python-3.x

我需要一些关于随机线选择器的帮助,什么是存储/选择值的好方法?

{{1}}

1 个答案:

答案 0 :(得分:-1)

对于电线

bomb = random.choice(wires)

现在你需要删除元素并随机删除其他元素

wires.remove(bomb)
neutral = random.choice(wires)

剩下的就是第三个选择

diffuse = wires.remove(neutral)

如果您需要始终使用问题==

if input = diffuse (bad - this is an assignment not an equality)

对于计时,你需要使用时间模块https://docs.python.org/2/library/time.html睡眠不是你需要的。用户回答Y后的时间戳,然后是时间戳并计算差值以了解已经过了多长时间。