1 一行 For 循环for 循环是一个多行语句,但是在 Python 中,我们可以使用列表推导式方法在一行中编写 for 循环。以过滤小于250的值为例
#For循环在一行
mylist = [200, 300, 400, 500]
#正
2022-12-07