Skip to main content

Posts

Showing posts from November, 2021

Swap two variables in one line

  X = 77 Y = 708 X,Y =Y,X print("after swapping x value and y is- ",X,Y)