Swapping Two Numbers In Python

  1. x = input('Enter value of x: ')  
  2. y = input('Enter value of y: ')  
  3.   
  4. # create a temporary variable and swap the values  
  5. temp = x  
  6. x = y  
  7. y = temp  
  8.   
  9. print('The value of x after swapping: {}'.format(x))  
  10. print('The value of y after swapping: {}'.format(y))