+ 12
apart from Python's tuples you can swap numerical variables of the same data type without using a third variable with the following trick: x = 10 y = 5 x = x + y # x = 15 , y = 5 y = x - y # x = 15 , y = 10 x = x - y # x = 5 , y = 10
25th Dec 2020, 6:40 AM
Jan Markus