Skip to content

Instantly share code, notes, and snippets.

@computer-tutor
Created April 28, 2020 05:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save computer-tutor/fe8830227ffa8074c18ae2f34fe5fd33 to your computer and use it in GitHub Desktop.
Save computer-tutor/fe8830227ffa8074c18ae2f34fe5fd33 to your computer and use it in GitHub Desktop.
from random import randint
def random(x,y):
return randint(x,y)
print("Three random numbers are: ", random(10,50),random(2,10),random(500,600))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment