可以使用for循环来按行输出列表中的元素。
示例代码如下:
lst = ["apple", "banana", "cherry"] for item in lst: print(item)
输出结果:
apple banana cherry
在这个例子中,for循环遍历列表lst中的每个元素,将每个元素赋值给变量item,然后使用print函数按行输出item。