Skip to content

Instantly share code, notes, and snippets.

@Megabytemb
Created April 7, 2015 03:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Megabytemb/c198e883eea954992152 to your computer and use it in GitHub Desktop.
Save Megabytemb/c198e883eea954992152 to your computer and use it in GitHub Desktop.
x = [0,3,2,5,4,6,1]
i=0
T=0
while i != 5:
i = i + 1
T = T + x[i]
print T
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment