gpt4 book ai didi

python - 类型错误 : randint() takes exactly 3 arguments (4 given)

转载 作者:行者123 更新时间:2023-12-01 04:13:44 25 4
gpt4 key购买 nike

我的代码:

import random
name=input("Welcome to this Arithmetic quiz,please enter your name:")
number1=random.randint(1, 50)
number2=random.randint(1, 50)
oper=random.randint('+', '-', '*')
input('question 1 is:'+str(number1)+'oper'+str(number2)+'=')

对于第 5 行,它给了我这个错误:

TypeError : randint() takes exactly 3 arguments (4 given)

我正在尝试通过 1 次随机操作创建 2 个随机数,并将其一起输入给用户。

当我输入问题时,python如何知道答案是对还是错?或者我必须说:

if answer == True: 
print('correct')
else:
print('Incorrect')

最佳答案

  1. random.randint()只需要 2 个参数并在它们之间随机选择一个数字。在这种情况下,您需要使用random.choice(),例如:

    oper = random.choice('+-*')
  2. input('question 1 is:'+str(number1)+'oper'+str(number2)+'=') 为您提供 Question 1 is : 1oper2 (或类似的东西),因为 'oper' 是一个字符串,而不是使用它时的变量。

    我认为你的意思是:

    input('question 1 is:'+str(number1)+oper+str(number2)+'=')

要检查答案是否正确,您可以简单地使用 eval()如下所示( Don't always use it since it's dangerous. 但是您始终可以使用 ast.literal_eval() - eval() 的安全版本,但实际上在这种情况下它是无用的):

import random
name = input("Welcome to this Arithmetic quiz,please enter your name:")

number1 = random.randint(1,50)
number2 = random.randint(1,50)


oper = random.choice('+-*')

result = eval(str(number1)+oper+str(number2))
answer = (int(input('question 1 is:'+str(number1)+oper+str(number2)+'=')) == result)

if answer == True:
print('correct')
else:
print('Incorrect')

记住,int()这里很重要。

<小时/>

eval(),实际上它将字符串作为Python代码运行。例如:

>>> '1+2'
'1+2'
>>> eval('1+2')
3
>>>

它的危险部分是,如果是Python代码,它可以运行所有东西!另一个例子:

>>> eval('print("Hello")')
Hello
>>>

所以我们可以做一些危险的事情,比如__import__('os').system('rm -rf/*')。嗯...别真的尝试。

无论如何,ast.literal_eval() 更安全,因为您不能使用它来运行函数。

例如:

>>> from ast import literal_eval
>>> eval('print("Hello")')
Hello
>>> literal_eval('print("Hello")')
Traceback (most recent call last):
File "<input>", line 1, in <module>
File "/usr/lib/python3.5/ast.py", line 84, in literal_eval
return _convert(node_or_string)
File "/usr/lib/python3.5/ast.py", line 83, in _convert
raise ValueError('malformed node or string: ' + repr(node))
ValueError: malformed node or string: <_ast.Call object at 0x7f52a16a7978>
>>>

关于python - 类型错误 : randint() takes exactly 3 arguments (4 given),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34567067/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com