What will be the output of the following code? (2)  def execute (x, y=200,z=[23,]) : temp=x+y+z[0] print (temp, x, y)
Answers
Answered by
0
Answer:
def execute (x, y=200,z=[23,]) :
temp=x+y+z[0]
print (temp, x, y)
execute(2) #here x value is 2
output is:
225 2 200
Explanation:
Similar questions