如何从字符串列表中选择提示?

时间:2014-06-11 15:47:01

标签: python prompt

我搜索过但找不到答案。 所以我有

Mood = raw_input("How are you?")

如何制作它以便从列表中选择原始问题,这样就可以'你是怎么''你有什么感觉'

2 个答案:

答案 0 :(得分:2)

import random
Mood = raw_input(random.choice(['how are you?', 'what are you feeling?']))

答案 1 :(得分:0)

只需索引到列表中

    ques = ['how are you?', 'what are you feeling?']

    ans = raw_input(ques[0])