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 2f4a57a commit 906de9cCopy full SHA for 906de9c
swap_numbers.py
@@ -0,0 +1,8 @@
1
+a=input("enter value of a:")
2
+b=input("enter value of b:")
3
+c=a
4
+a=b
5
+b=c
6
+print("After swapping:")
7
+print("value of a:",a)
8
+print("value of b:",b)# Compare this snippet from
0 commit comments