Skip to content

Instantly share code, notes, and snippets.

@Celia-code
Created April 6, 2020 09:23
Embed
What would you like to do?
while循環
n = 0
total = 0
while n < 10:
# n += 1
total += n
print(total)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment