避免 Python中的 TypeError: Input Expected at Most 1 Argument, Got 3 错误
在Python编程中,我们有两个内置方法来获取用户的输入:input(prompt)
和 raw_input(prompt)
。 第二种方法 raw_input(prompt)
在Python 2.X等老版本中使用,input(prompt)
仍在使用。
本文将重点介绍 input(prompt)
方法。
在 Python 中获取用户输入
在Python中,我们将使用内置的 input()
函数来获取用户的输入并在程序中相应地使用它。
Python 中 input()
函数的使用:
name = input("Hey! What is your name? ")
print("Nice to meet you ", name)
输出:
Hey! What is your name? Zeeshan Afridi
Nice to meet you Zeeshan Afridi
在上面的程序中,我们使用了 input(prompt)
函数来询问用户的姓名。 当用户输入他们的名字时,它将存储在 name 变量中,您稍后可以在程序中任何需要的地方使用它。
Python 中避免 TypeError: input Expected atmost 1 argument, got 3 Error
在计算机编程中,TypeError 是一种语法错误,意味着开发人员由于输入语法无效或向函数传递额外参数而在编写程序时犯了一些错误。 常见错误之一是 TypeError: input Expected atmost 1 argument, got 3 Error。
让我们通过一个例子来理解它:
name = input ("Please enter your name: ")
age = input ("Please enter your age: ")
print("Your good name is ", name, " and your age is ", age)
goal = input("What is your life goal Mr. ", name, " ?")
print(goal)
print("Awesome!")
输出:
Please enter your name: Zeeshan Afridi
Please enter your age: 24
Your good name is Zeeshan Afridi and your age is 24
TypeError: input expected at most 1 argument, got 3
上面的程序中,前3行执行得很顺利,但是下一行代码 goal = input("What is your life goal Mr. ", name, " ?")
却抛出了错误 TypeError: input Expected atmost 1 argument, got 3 Error。
这是因为 Python input()
函数只需要一个参数,但我们已将三个参数传递给 input()
函数。 第一个参数是字符串 What is your life goal Mr. ,第二个参数是变量名,最后一个参数又是一个字符串 ? 。
我们用逗号 , 分隔这些参数,这表明每个参数都是一个单独的参数。 但是,如果您想按原样打印输入提示,则必须连接这些参数以使其成为单个参数以满足 input()
函数的期望。
让我们通过一个例子来理解它:
name = input ("Please enter your name: ")
age = input ("Please enter your age: ")
print("\nYour good name is ", name, " and your age is ", age)
goal = input("What is your life goal Mr. "+ name+ " ? ")
print("Awesome!")
输出:
Please enter your name: Zeeshan Afridi
Please enter your age: 24
Your good name is Zeeshan Afridi and your age is 24
What is your life goal Mr. Zeeshan Afridi ? To be a Python Developer
Awesome!
在上面的程序中,我们借助加号 +
连接了 input()
函数的参数,使它们成为单个参数并避免输入类型错误。
相关文章
Python 错误 TypeError: Int Object Is Not Callable
发布时间:2023/07/08 浏览次数:142 分类:Python
-
本篇文章将讨论所有场景以及修复 TypeError: 'int' object is not callable in Python 的解决方案。python 中添加缺少的运算符以修复 TypeError: 'int' object is not callable 有时您可能忘记在代码中添加数学运算符。
Python 中 ImportError: Cannot Import Name _Remove_dead_weakref
发布时间:2023/07/08 浏览次数:181 分类:Python
-
在Python中,我们使用模块来定义和存储文件中的功能和类,这些文件可以导入到其他程序中。 我们使用 import 语句从模块导入函数和对象。Python 中 ImportError: cannot import name _remove_dead_weakref错误
Python 中 Error: else & elif Statements Not Working 错误
发布时间:2023/07/08 浏览次数:166 分类:Python
-
我们可以将 Python 中的 else 语句与 elif 和 if 语句结合起来。 但是,在代码中运行 if...elif...else 语句时,您可能会收到Python 中 SyntaxError: invalid syntax 的错误。
Python 错误 Error: Can't Find Python Executable Python, You Can Set the PYTHON
发布时间:2023/07/08 浏览次数:143 分类:Python
-
本篇文章将介绍 Can't find Python executable "python", you can set the PYTHON env variable 错误以及如何修复它。Python 中 Error: Can't find Python executable "python", you can set the PYTHON env variable 错误
Python 错误 ImportError: No Module Named
发布时间:2023/07/08 浏览次数:154 分类:Python
-
本篇文章将介绍修复 ImportError: No module named。安装模块以修复Python 中 ImportError: No module named Python 包含几个内置模块。检查 typeerror 以修复 Python 中 ImportError: No module named
Python 错误 Object Is Not Callable
发布时间:2023/07/08 浏览次数:157 分类:Python
-
我们将讨论对象不可调用的类型错误,看看问题是如何发生的以及如何修复它,并学习如何使用可调用函数来检查对象在Python中是否可调用。
python 中的错误 NameError: Name Python Is Not Defined
发布时间:2023/07/08 浏览次数:56 分类:Python
-
我们将了解什么是 NameError 以及如何修复它。 我们还将学习如何修复当我们在解释器内调用 Python 而不是 Python 中的终端时出现的 NameError: name 'python' is not Defined。
Python 中错误 IOError: [Errno 13] Permission Denied
发布时间:2023/07/08 浏览次数:50 分类:Python
-
发生 IOError 是很常见的,因为我们人类主要与计算机的 GUI 进行交互什么是Python文件处理中 IOError: [Errno 13] Permission denied 在文件处理中,您需要提供要访问的文件的完整路径; 否则,您将得到
解决 Python 中 TypeError: Module Object Is Not Callable 错误
发布时间:2023/07/07 浏览次数:131 分类:Python
-
本文将讨论 TypeError: 'module' object is not callable。 当类/方法和模块具有相同的名称时,就会出现此错误; 由于名称相同,我们会混淆它们。Python 中 TypeError: 'module' object is not callable 的原因