Computer Science, asked by fahmidamujeeb9717, 8 months ago

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 pavithranatarajan855
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