Skip to content

Instantly share code, notes, and snippets.

@alexanderawwagner
Created March 5, 2021 14: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/43db0a792f6d767bd943c445f5609ad5 to your computer and use it in GitHub Desktop.
Save alexanderawwagner/43db0a792f6d767bd943c445f5609ad5 to your computer and use it in GitHub Desktop.
Medium_04_Python Course-Part 04- Control Structures
from numpy import random
n=0
while n < 5:
n=random.randint(10)
print("Random number is:", n)
print("Line after While Loop")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment