Answers for "python swap\"

1

swapping in python

a = 10
b = 20
print("not swiped value of a is",a)
print("not swiped value of b is",b)
stored_value = a
a = b
b = stored_value
print("swiped value of a is",a)
print("swiped value of b is",b)
Posted by: Guest on June-30-2021

Python Answers by Framework

Browse Popular Code Answers by Language