Advertisements
Advertisements
प्रश्न
Write a program to swap two numbers using a third variable.
संक्षेप में उत्तर
उत्तर
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.")
# k is the third variable used to swap values between x and y
k = x
x = y
y = k
#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
Variables
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
APPEARS IN
संबंधित प्रश्न
Write the corresponding Python assignment statement:
Assign 10 to variable length and 20 to variable breadth.
Write the corresponding Python assignment statement:
Assign the average of values of the variable's length and breadth to a variable sum.
Write the corresponding Python assignment statement:
Assign a list containing strings ‘Paper’, ‘Gel Pen’, and ‘Eraser’ to variable stationery.
Write a program to swap two numbers without using a third variable.
Give the output of the following when num1 = 4, num2 = 3, num3 = 2.
num1 = float(10)
print (num1)