Created
April 28, 2020 05:39
-
-
Save computer-tutor/fe8830227ffa8074c18ae2f34fe5fd33 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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