题解 | #跳过列表的某个元素#
跳过列表的某个元素
https://www.nowcoder.com/practice/4713c1513cfa43b5a3dd0013059880fe
for i in range(1, 16): if i == 13: continue else: print(i, end=' ')
跳过列表的某个元素
https://www.nowcoder.com/practice/4713c1513cfa43b5a3dd0013059880fe
for i in range(1, 16): if i == 13: continue else: print(i, end=' ')
相关推荐