We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4004e25 commit 501654cCopy full SHA for 501654c
Swap.py
@@ -0,0 +1,8 @@
1
+a=10
2
+b=20
3
+print("Before Swapping Values",a,"",b)
4
+
5
+temp=a
6
+a=b
7
+b=temp
8
+print("After Swapping values",a,"",b)
0 commit comments