for i in range(nums): rnd.append(random.randint in python

To generate a list of random numbers using the random module in Python, you can use the randint() function. To add the randomly generated numbers to a list using a for loop, you can use the range() function to specify the number of values you want to generate.

Here is an example code block that generates a list of 10 random integers between 1 and 100 using a for loop and the randint() function:

main.py
import random

rnd = []  # create an empty list to store the random numbers

nums = 10  # specify the number of random numbers to generate

for i in range(nums):
    rnd.append(random.randint(1, 100))

print(rnd)  # print the list of random numbers
249 chars
11 lines

In this example, the random() module is imported at the beginning of the code, and an empty list rnd is created to store the generated numbers. The variable nums specifies the number of random numbers to generate, and the for loop uses the range() function to loop over nums and generate a new random number each time. The randint() function generates a random integer between 1 and 100 (inclusive), and the append() method adds the generated number to the rnd list.

Finally, the list of random numbers is printed to the console using the print() function.

gistlibby LogSnag