Not so random

Report a typo

Python can generate random numbers using the random module. But sometimes we want to make limitations by a range.

Write a program that creates n variable which is a random number from -100 to 100. Use the randint function from the random module. This function inputs two numbers: the range's start and end.

Please, don't change the variable's name! You shouldn't print the variable, just create it.

Sample Input 1:

Sample Output 1:

Correct
Write a program in Python 3
# place `import` statement at top of the program


# put your code here
___

Create a free account to access the full topic