在 for 循环中使用 continue 语句在 for 循环中使用 continue 语句fruits = ["apple", "banana", "cherry"]for x in fruits: if x == "banana": continue print(x)