返回列表 發帖
for i in range(1,100):
    if i==10:
        break
    print(i)
for i in range(1,100):
    if i==10:
        continue
    print(i)

TOP

返回列表