Page 1 of 1

1) write a program which has a main() function. inside main(): a) call a function named"GetRandomIntegerLimits()" which

Posted: Sat May 14, 2022 6:50 pm
by answerhappygod
1) write a program which has a main() function.
inside main():
a) call a function named"GetRandomIntegerLimits()" which asks the user for the lower and upper limits for generating random integers.Those limits should be returned to main ().
b)Ask the user for how many random integers should be created.
c)use a loop to call function named "GetRandomIntegers()".GetRandomIntegers should return a random integer within the specified limits.The loop should print out each random integer. python program and no global variables