Computer Science, asked by rohan609609, 5 months ago

Consider the two variables a and b. Write a program in python to assign value 2 to variable a and 3 to variable b. Then interchange and display the values of a and b.

Answers

Answered by Anonymous
7

Answer:

hi

Explanation:

a=2

b=3

print("before swapping")

print("a=",a,"& b=",b)

print("after swapping")

print("a=",b,"& b=",a)

hope \: it \:  helps \: you...☺

Similar questions