Ann Xie
0
Q:

python generate list of random numbers

import random
n = random.randint(0,22)
print(n)
3
import random
randomlist = []
for i in range(0,5):
n = random.randint(1,30)
randomlist.append(n)
print(randomlist)
0
# Here is a literal random python code:
numbers = []

def while_loop(i, x, y):
    
    while i < x:
        print(f"At the top i is {i}")
        numbers.append(i)

        i = i + y
        print("Numbers now: ", numbers)
        print(f"At the bottom i is {i}")
    
    print("The numbers: ")

    for num in numbers:
        print(num)

while_loop(0, 6, 1) 
# The last number is an incrementor, which specifies how much the variable "i" goes up by.
-1

New to Communities?

Join the community