题解 | #跳过列表的某个元素#
跳过列表的某个元素
https://www.nowcoder.com/practice/4713c1513cfa43b5a3dd0013059880fe
for i in range(1,16): if i == 13: continue else: print(i,end=" ")#end末尾使用空格分开,seq是指定分隔符
跳过列表的某个元素
https://www.nowcoder.com/practice/4713c1513cfa43b5a3dd0013059880fe
for i in range(1,16): if i == 13: continue else: print(i,end=" ")#end末尾使用空格分开,seq是指定分隔符
相关推荐