Govind
0
Q:

how to create a random number between 1 and 10 in python

import random
n = random.randint(0,22)
print(n)

# Output: 2
1
smallest = 0
largest = 100

random_number = random.randint(smallest, largest - 1)
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