for的用法和例句有哪些?
编辑:自学文库
时间:2024年09月22日
例如:1. for循环遍历一个列表,可以执行特定操作:```fruits = ["apple", "banana", "cherry"]for fruit in fruits: print(fruit)```输出结果为:```applebananacherry```2. 可以使用for循环遍历一个字符串的每个字符:```word = "Hello"for letter in word: print(letter)```输出结果为:```Hello```3. 使用for循环和range函数,可以重复执行一段代码特定次数:```for i in range(5): print(i)```输出结果为:```01234```4. for循环还可以与条件语句结合使用,对满足条件的元素执行特定操作:```numbers = [1, 2, 3, 4, 5]for num in numbers: if num % 2 == 0: print(num)```输出结果为:```24```5. for循环也可以用于遍历字典中的键值对:```person = {"name": "Alice", "age": 25, "country": "USA"}for key, value in person.items(): print(key, value)```输出结果为:```name Aliceage 25country USA```