Python for 关键字
Python基础 2022-06-06 16:26:12小码哥的IT人生shichen
Python for 关键字
实例
打印 1 到 8 的每个数字:
for x in range(1, 9):
print(x)
完整实例:
for x in range(1, 9):
print(x)
定义和用法
for 关键字用于创建 for 循环。
它可以用来遍历序列,例如列表,元组等。
更多实例
示例代码:
遍历列表中的每个项目:
fruits = ["apple", "banana", "cherry"]
for x in fruits:
print(x)
完整实例:
fruits = ["apple", "banana", "cherry"]
for x in fruits:
print(x)