我正在用python制作文字冒险游戏,并且我已经随机分配了我的第一个选择(A,B,C),现在说他在选择A时什么也找不到。我基本上如何说;
”“如果找不到任何内容,(* 在此处插入另一个选择列表 *)”
输入我的代码?我似乎找不到答案,所以我希望这里的人知道这一点,谢谢! 到目前为止,这是我的代码:
input price = close;
input length = 9;
plot SMA = (fold n = 0 to length with s do s + getValue(price, n, length - 1)) / lenth;
我有什么需要改变的吗?
答案 0 :(得分:0)
怎么样?
if ch1 in ['A']:
random_value = random.choice(responsesA)
print(random_value)
if random_value == 'You did not find anything.':
# insert another list of choices here
与其打印出随机值,不如将其保留在变量中,然后检查随机值是否为“ no value”并进行相应处理。