From 773c08127b40ab917bc26077e3349f5f3f694379 Mon Sep 17 00:00:00 2001 From: hazelgithub <35742897+hazelgithub@users.noreply.github.com> Date: Tue, 23 Jan 2018 19:50:28 +0000 Subject: [PATCH 1/3] Create file1 --- file1 | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 file1 diff --git a/file1 b/file1 new file mode 100644 index 0000000..7f97e50 --- /dev/null +++ b/file1 @@ -0,0 +1,2 @@ +THIS IS FILE UNDER FEATURE EDITS +THIS FILE IS GGOD From 450f93be61c25d0f7c1a0cc6030595f3b974fffb Mon Sep 17 00:00:00 2001 From: hazelgithub <35742897+hazelgithub@users.noreply.github.com> Date: Tue, 23 Jan 2018 19:52:55 +0000 Subject: [PATCH 2/3] Update file1 --- file1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/file1 b/file1 index 7f97e50..364160a 100644 --- a/file1 +++ b/file1 @@ -1,2 +1,2 @@ THIS IS FILE UNDER FEATURE EDITS -THIS FILE IS GGOD +THIS FILE IS GOOD From 15711a9d2cad93ecf8a3713d66c28c9287f43bfa Mon Sep 17 00:00:00 2001 From: hazelgithub <35742897+hazelgithub@users.noreply.github.com> Date: Wed, 24 Jan 2018 22:51:57 -0500 Subject: [PATCH 3/3] Add files via upload --- pgm1.py | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 pgm1.py diff --git a/pgm1.py b/pgm1.py new file mode 100644 index 0000000..3197180 --- /dev/null +++ b/pgm1.py @@ -0,0 +1,29 @@ +print("Welcome To Calculator") + +def add(num1,num2): + sum = num1 + num2 + return sum + +def sub(num1,num2): + sub = num1 - num2 + return sub + +def mult(num1,num2): + return (num1 * num2) + +def div(num1,num2): + return (num1/num2) + + +a = 'i am learning Python, what about you !!!' +b = a.split(' ') +print (len(b)) +print (b) +i = 0 +while i <= len(b): + print (b[i]) + i = i + 1 + +c = mult(3,1) +print(c) +