6.8k views
3 votes
Consider the following code: def tryIt(b): for i in range(len(b)): b[i] = b[i] + 100 #***********MAIN************ x = [] x = [56, 78, 88] print(x) tryIt(x) print(x) [156, 178, 188] [156, 178, 188] [56, 78, 88] [156, 178, 188] [56, 78, 88] [56, 78, 88]

1 Answer

5 votes

Answer: I took a high school robotics class when I was in 5th grade and I don't even understand your code there aren't any instructions other than "Consider" the following code you may want to improve your question

User MISNole
by
5.0k points