Skip to content

Instantly share code, notes, and snippets.

@alexanderawwagner
Created March 5, 2021 12:48
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 alexanderawwagner/d71c576ffa50a440e33f6ec5d317fb74 to your computer and use it in GitHub Desktop.
Save alexanderawwagner/d71c576ffa50a440e33f6ec5d317fb74 to your computer and use it in GitHub Desktop.
Medium_04_Python Course-Part 04- Control Structures
count = 0
while True:
print("Value: ", count)
count += 1
if count >= 5:
break
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment