Skip to content

Commit 8d0570e

Browse files
committed
featureday03 changes
1 parent 025068f commit 8d0570e

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

Day-03/test.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
2+
value1 = 5;
3+
value2 = 3;
4+
5+
def addition():
6+
print (value1 + value2);
7+
8+
def sub():
9+
value1 = 20
10+
value2 = 15
11+
print (value1 - value2);
12+
13+
addition()
14+
sub()

Day-03/test2.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
import test
2+
val = test.addition(100, 200);
3+
4+
print("Output:", val)

0 commit comments

Comments
 (0)