Skip to content

Instantly share code, notes, and snippets.

@Celia-code
Created April 9, 2020 10:02
Embed
What would you like to do?
break&continue
for i in range(11):
if i == 7:
break
print(i) #打印出1~6
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment