We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 11a68b7 commit 386e4a7Copy full SHA for 386e4a7
10X/Python/FUNCTION/swap_two_input_with function.py
@@ -0,0 +1,9 @@
1
+def swp(a,b):
2
+ a,b=b,a
3
+ print(a)
4
+ print(b)
5
+
6
+if __name__ == "__main__":
7
+ a=input()
8
+ b=input()
9
+ swp(a,b)
0 commit comments