Python Tutorial for Beginners | Swap two variables in Python

Veröffentlicht am: 02 Mai 2020
auf dem Kanal: harshal mishra
39
2

Please don't forget to like and subscribe

Full Playlist :    • Py-Pie Python Tutorial  

Facebook :   / py-pie-python-for-beginners-113344127050954  

Twitter :   / shankar35425457  


'''
Swap two variables in python
1. Tradional Method
2. Mathmatical Method
3. Using XOR operator in python
4. Pythonic Way of swapping

'''

x = 5 # 3 bits
y = 6 # 3 bits

print(x,y)
temp = x
x = y
y = temp
print(x,y)

print(x,y)

x = x + y # 4 bits
y = x - y
x = x - y

#using XOR operator.

x = x ^ y # 3 bits
y = x ^ y
x = x ^ y

Pythonic way of swapping

x, y = y, x

x, y = 6, 5
assignement (because of '=')


print(x,y)


Auf dieser Seite können Sie das Online-Video Python Tutorial for Beginners | Swap two variables in Python mit der Dauer stunde minuten sekunde in guter Qualität ansehen, das der Benutzer harshal mishra 02 Mai 2020 hochgeladen hat, den Link mit Freunden und Bekannten teilen, dieses Video wurde auf Youtube bereits 39 Mal angesehen und es wurde von 2 den Zuschauern gefallen. Viel Spaß beim Betrachtenden Zuschauern gefallen!