为什么不能
not
在for
语句中使用 a?假设object
和list
都是可迭代的如果你不能这样做,还有其他方法吗?
这是一个示例,但“显然”是一个语法错误:
tree = ["Wood", "Plank", "Apples", "Monkey"]
plant = ["Flower", "Plank", "Rose"]
for plant not in tree:
# Do something
pass
else:
# Do other stuff
pass