Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Can you explain the code and when random.randint is added to the numslist[i] in the last line, is it going to add that number to
Can you explain the code and when random.randint is added to the numslist[i] in the last line, is it going to add that number to numslit in the second line?
1 2 3 import random numsList = [] 5 6 for i in range(0,4): numsList.append()) for j in range(0,4): number=random.randint(0, 100) numsList[i].append(random.randint(0,100) 7 8 9 10 11 12 13 14 15 for value in numsList: output="" for num in value: output+=str(num) print (output)Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started