Consider the two variable a and b. write a program in python
to assign value 5 to variable a and value 6 to variable b. then
interchange and display the value of a and b.
Answers
Answered by
3
a = 5
b = 6
a, b = b, a
print(a, b)
Similar questions