Question: You are given the following piece of Python code: ########### x = 0 N = [1, 2, 3] for i in N: x = x
You are given the following piece of Python code:
###########
x = 0
N = [1, 2, 3]
for i in N: x = x + i print(x)
###########
What is the output of the above program?
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
