Skip to content

Instantly share code, notes, and snippets.

@victorvaz
Last active May 16, 2016 01:09
Show Gist options
  • Save victorvaz/74f48d9c146593cf41e2539d191d5f4c to your computer and use it in GitHub Desktop.
Save victorvaz/74f48d9c146593cf41e2539d191d5f4c to your computer and use it in GitHub Desktop.
# Faz a soma de 0 a 999
r = 0
for x in range(0, 1000) :
r = r + x
print("A soma de 0 a 999 é " + str(r))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment