Python 中 Error: else & elif Statements Not Working 错误
我们可以将 Python 中的 else 语句与 elif 和 if 语句结合起来。 但是,在代码中运行 if...elif...else
语句时,您可能会收到Python 中 SyntaxError: invalid syntax 的错误。
它主要发生在代码中存在错误缩进时。 本教程将教您修复 Python 中的语法错误:无效语法。
修复 Python 中的 else 和 elif 语句语法错误
缩进是 Python 代码行中的前导空白(空格和制表符)。 与其他编程语言不同,缩进在Python中非常重要。
Python 使用缩进来表示代码块。 当缩进没有正确完成时,它会给你一个错误。
让我们看一个 else 和 elif 语句的示例。
代码示例:
num=25
guess=int(input("Guess the number:"))
if guess == num:
print("correct")
elif guess < num:
print("The number is greater.")
else:
print("The number is smaller.")
错误输出:
File "c:\Users\rhntm\myscript.py", line 5
elif guess < num:
^^^^
SyntaxError: invalid syntax
上面的示例引发异常 SyntaxError,因为第 5 行中没有正确遵循缩进。您必须在 if 代码块之后使用 else 代码块。
elif语句需要与if语句保持一致,如下所示。
代码示例:
num=25
guess=int(input("Guess the number:"))
if guess == num:
print("correct")
elif guess < num:
print("The number is greater.")
else:
print("The number is smaller.")
输出:
Guess the number:20
The number is greater.
现在,代码运行成功。
在 Python 中,缩进对于构建语句的代码块至关重要。 一组语句中的空格数必须等于表示一个代码块。
Python 中默认缩进为 4 个空格。 这取决于你,但至少必须使用一个空间。
如果代码中存在错误的缩进,Python 中将会出现 IndentationError 错误。 您可以通过更正代码中的缩进来修复它。
相关文章
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 的原因
解决 Python 中 OSError: [Errno 2] No Such File or Directory 错误
发布时间:2023/07/07 浏览次数:151 分类:Python
-
在Python中运行程序时,我们经常会遇到错误。 本文将讨论Python中的OSError: [Errno 2] No such file or directory。Python 中 OSError: [Errno 2] No such file or directory
Python 中错误 NoneType Object Has No Attribute Append
发布时间:2023/07/07 浏览次数:151 分类:Python
-
通过这个解释,我们将了解 NoneType 错误,并了解导致此错误的原因是什么。 我们还将学习如何在 Python 中修复此错误。
Python 中错误 IO.UnsupportedOperation: Not Writable
发布时间:2023/07/07 浏览次数:106 分类:Python
-
本篇文章将介绍 Python 中的 io.UnsupportedOperation: not writable 错误及其修复方法。修复 Python 中的 io.UnsupportedOperation: not writable 错误 当我们尝试对以读取模式打开的文件执行写入操作时,会导致此错