From f80c6798dc251606f1f19873cddca1ebc8621b57 Mon Sep 17 00:00:00 2001 From: Deepak Raj <54245038+perfect104@users.noreply.github.com> Date: Tue, 28 Jan 2020 16:57:40 +0530 Subject: [PATCH] Update add 2 number.py --- Python Intermediate/add 2 number.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python Intermediate/add 2 number.py b/Python Intermediate/add 2 number.py index b2d2f52..e0d39ac 100644 --- a/Python Intermediate/add 2 number.py +++ b/Python Intermediate/add 2 number.py @@ -7,4 +7,4 @@ #printing values -print("sum of {0} and {1} is {2}".format(num1, num2, sum)) \ No newline at end of file +print(f"sum of {num1} and {num2} is {sum}") \ No newline at end of file