python:为多个问题导入随机数
我已经创建了一个 login()
。每次尝试随机询问一个问题,如果回答正确则运行 login()
。
以下是我想要做的概述:
>>> def human_check():
question1 == raw_input('1+1=')#question.1#
while question1 !== '2':
print 'sorry robot , try again'
else:
return login()
question2 == raw_input('the cow jumped over the ....')#question.2#
while question2 !== '2':
print 'sorry robot , try again'
else:
return login()
import random
random.question
我导入了 random
模块,但是如何对问题进行分组以使 random.
起作用?
SyntaxError: invalid syntax
>>>
I have already created a login()
. Trying to ask a random question each time and if answered correctly to run login()
.
Below is the outline of what I am trying to do:
>>> def human_check():
question1 == raw_input('1+1=')#question.1#
while question1 !== '2':
print 'sorry robot , try again'
else:
return login()
question2 == raw_input('the cow jumped over the ....')#question.2#
while question2 !== '2':
print 'sorry robot , try again'
else:
return login()
import random
random.question
I imported the random
module but how do I group the questions so that random.
will work?
SyntaxError: invalid syntax
>>>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以执行以下操作:
基本上,如果您维护一些问题列表,则可以使用 random.choice 从该列表中进行随机选择。
You can do something like this:
Basically, if you maintain some list of questions, you can use
random.choice
to make a random selection from that list.