الصفحة الرئيسيةpython Python Program to Swap Two Variables يونيو 20, 2021 0 x = input('Enter the value of x: ') y = input('Enter the value of y: ') # create a temporary variable and swap the values temp = x x = y y = temp print('The value of x after swapping: {}'.format(x)) print('The value of y after swapping: {}'.format(y)) Tags: python Facebook Twitter