for i in range(0,10): if i!= (3 or 7 or 9) : print(i) else: continue** 我想跳过提到的代码中的 3 7 和 9,但它只删除 3**。
1 回答
互换的青春
TA贡献1797条经验 获得超6个赞
您可以使用此代码
for i in range(0,10):
if i!= 3 and i!= 7 and i!=9 :
print(i)
else:
continue
添加回答
举报
0/150
提交
取消