Question: ## Problem 1 (Sequences) # Question: Use the randint function from the random module to generate a sequence of the first 20 # random integers
## Problem 1 (Sequences)
# Question: Use the randint function from the random module to generate a sequence of the first 20
# random integers between 0 and 10, including both 0 and 10 as possibilities.
# Enter the SUM of the resulting sequence of integers as the answer.
import random
random.seed(5) # Setting the seed will ensure it always generates the same sequence of numbers
# Hint, you may want to use: help(random.randint) to learn about the function
# XXXXX - write your code here, upload the resulting NUMBER for the answer to the problem
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
