From 85b517eaef85fab7d78427742512ffd6020d038f Mon Sep 17 00:00:00 2001 From: "[Michael] [Abbondandolo]" <71401273+Mike5931@users.noreply.github.com> Date: Sat, 31 Oct 2020 12:04:39 -0400 Subject: [PATCH] Add-Random-Number-Project Added a file that consists of 10 random numbers within the range. --- Project | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 Project diff --git a/Project b/Project new file mode 100644 index 00000000..a3e4802b --- /dev/null +++ b/Project @@ -0,0 +1,3 @@ +import random +for x in range(10): + print (random.randint(1,100)) \ No newline at end of file