Skip to content

Instantly share code, notes, and snippets.

@codetombomb
Created September 24, 2020 17:18
Show Gist options
  • Save codetombomb/807d3b1214565e066cd66cb6a2779604 to your computer and use it in GitHub Desktop.
Save codetombomb/807d3b1214565e066cd66cb6a2779604 to your computer and use it in GitHub Desktop.
While Loop
def while_loop():
x = 0
while x < 5:
print(x)
x += 1
if __name__ == "__main__":
while_loop()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment