Advertisements
Advertisements
प्रश्न
Write a program to swap two numbers without using a third variable.
थोडक्यात उत्तर
Advertisements
उत्तर
Program:
#defining two variables
x = 5
y = 6
#printing the values before swapping
print("The values of x and y are",x,"and",y,"respectively.")
# Using 'multiple assignments' to swap the values
x,y = y,x
#printing the values after swapping
print("The values of x and y after swapping are",x,"and",y,"respectively.")
OUTPUT:
The values of x and y are 5 and 6 respectively.
The values of x and y after swapping are 6 and 5 respectively.shaalaa.com
Python Variables
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
