Skip to content

Instantly share code, notes, and snippets.

View coder-shanks's full-sized avatar
🎯
Focusing

Shubham Tarade coder-shanks

🎯
Focusing
View GitHub Profile
@coder-shanks
coder-shanks / swap_using_third_variable.py
Created March 19, 2019 11:35
Swap the two numbers using a third variable
first_number = 5
second_number = 7
# Storing the value of first number in a temporary variable
temp = first_number # temp = 5
# Replacing the value of first_number by second_number
first_number = second_number # first_number = 7
# Assigning the cached value of first number in temp variable
# to second_number
second_number = temp # second_number = 5