Skip to content

Commit 08ce36f

Browse files
author
learnp
committed
fixed an issue in test.py
1 parent c6ff4ad commit 08ce36f

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

test.py

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
def sum(a,b):
22
return a+b
33

4-
def sum(a,b):
5-
return str(a)+str(b)+"***"
6-
7-
print(sum("a","b"))
4+
n1=input('enter first number')
5+
n2=input('enter first number')
6+
print('sum is: ',sum(n1,n2))

0 commit comments

Comments
 (0)