From 66ea376b70d7770e93752e7f95086efb41cb733a Mon Sep 17 00:00:00 2001 From: Shaletmathew <44632676+Shaletmathew@users.noreply.github.com> Date: Wed, 31 Oct 2018 12:22:05 +0530 Subject: [PATCH] file.py --- file.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 file.py diff --git a/file.py b/file.py new file mode 100644 index 0000000..2671015 --- /dev/null +++ b/file.py @@ -0,0 +1,10 @@ +# This program adds two numbers + +num1 = 1.5 +num2 = 6.3 + +# Add two numbers +sum = float(num1) + float(num2) + +# Display the sum +print('The sum of {0} and {1} is {2}'.format(num1, num2, sum))