From 984630d02d5337f66fbbad003dc723d05891d3e0 Mon Sep 17 00:00:00 2001 From: lipsha-mishra <61733114+lipsha-mishra@users.noreply.github.com> Date: Sun, 31 Oct 2021 16:55:00 +0530 Subject: [PATCH] Added some comments... --- swap.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/swap.py b/swap.py index e94425b..3c54882 100644 --- a/swap.py +++ b/swap.py @@ -1,3 +1,5 @@ +# This is a program for swapping two numbers. + P = int( input("Please enter value for P: ")) Q = int( input("Please enter value for Q: ")) @@ -8,4 +10,6 @@ Q = temp_1 print ("The Value of P after swapping: ", P) -print ("The Value of Q after swapping: ", Q) \ No newline at end of file +print ("The Value of Q after swapping: ", Q) + +# End of the program