python:为多个问题导入随机数

发布于 2024-11-27 23:48:57 字数 611 浏览 1 评论 0原文

我已经创建了一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我只土不豪 2024-12-04 23:48:57

您可以执行以下操作:

import random

questions = []
questions.append(("1+1=", "2"))
questions.append(("the cow jumped over the ....", "moon"))

def human_check():
    random_question = random.choice(questions)
    question, answer = random_question
    user_answer = raw_input(question)
    if user_answer != answer:
       print "Sorry, try again."
    else:
       return login()

基本上,如果您维护一些问题列表,则可以使用 random.choice 从该列表中进行随机选择。

You can do something like this:

import random

questions = []
questions.append(("1+1=", "2"))
questions.append(("the cow jumped over the ....", "moon"))

def human_check():
    random_question = random.choice(questions)
    question, answer = random_question
    user_answer = raw_input(question)
    if user_answer != answer:
       print "Sorry, try again."
    else:
       return login()

Basically, if you maintain some list of questions, you can use random.choice to make a random selection from that list.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文