Python中有哪些关键字及关键字的用法

  • Post category:Python

Python 中的关键字是特定的单词或字符序列,它们在语法中有着特别的用途。这些关键字是预定义的,不能用于变量、函数或任何其他标识符的命名,否则会导致语法错误。

Python 中总共有 35 个关键字:

and, as, assert, break, class, continue, def, del, elif, else, except, False, finally, for, from, global, if, import, in, is, lambda, None, nonlocal, not, or, pass, raise, return, True, try, while, with, yield

下面是 Python 关键字的用法讲解:

1. 条件判断中的关键字

  • if: 条件语句中用于判断是否执行下一步操作,后面加 else 可以对条件判断进行扩展。
  • elif: 在条件判断中可以添加多个 elif 关键字来判断多种情况。

示例代码:

num = 5
if num < 0:
    print("Number is negative")
elif num == 0:
    print("Number is zero")
else:
    print("Number is positive")

2. 循环中的关键字

  • for: 用于循环遍历序列类型(如 listtuplesetstringdictionary)或可遍历的对象(如 rangeenumerate)。
  • while: 用于循环执行语句块,满足条件时循环继续执行,否则退出循环。

示例代码:

numbers = [1, 2, 3, 4, 5]
for number in numbers:
    print(number)

num = 10
while num > 0:
    print(num)
    num -= 1