可以使用for循环遍历列表项:逐个打印列表中的所有项目:fruitlist = ["apple", "banana", "cherry"]for x in fruitlist: print(x)执行结果:applebananacherry