gpt4 book ai didi

python - 类型错误 : input expected at most 1 arguments, 得到 3

转载 作者:太空宇宙 更新时间:2023-11-03 13:48:19 25 4
gpt4 key购买 nike

我正在用 Python 制作一个小型猜谜游戏,计算机会猜测玩家选择的数字。当我尝试请求用户输入时出现错误:

answer = input("Is it", guess, "?")

这一行抛出

TypeError: input expected at most 1 arguments, got 3

我做错了什么?

最佳答案

input 只接受 一个 参数,你正在传递它 3. 你需要使用字符串格式化或连接使其成为一个参数:

answer = input(f"Is it {guess} ?")

您将此与 print() 函数混淆了,该函数确实需要多个参数并将值连接成一个字符串。

关于python - 类型错误 : input expected at most 1 arguments, 得到 3,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14856953/

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