python11Python program to swap two variablesx = 5 y = 10To take inputs from the user#x = input('Enter value of x: ') #y = input('Enter value of y: ')create a temporary variable and swap the valuestemp = x x = y y = tempprint('The value of x after swapping: {}'.format(x)) print('The value of y after swapping: {}'.format(y))