E. Solve the Numerical or program
1. What will be the output of following code?
(a)
x,y=5,6
x,y=y,x+4
print(x)
print(y)
Answers
Answered by
24
Output will be:-
6
10
Answered by
1
Explanation:
out put will be
6
and
10 .......
Similar questions