diwas7777 / CodesHub

This open source project is made to help students find codes in different languages easily for every usecase.
https://diwas7777.github.io/CodesHub/
GNU General Public License v2.0
50 stars 136 forks source link

Pythonic way of exchange between two variables. #290

Closed karunakarhv closed 1 year ago

karunakarhv commented 1 year ago

Classic way of exchange

# Usage of temp variable
c = a
a = b
b = c

Pythonic way of exchange.

a, b = b, a