We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 13207e5 + 334f0f1 commit 3a012d4Copy full SHA for 3a012d4
1 file changed
src/subtract.py
@@ -0,0 +1,5 @@
1
+def subtract(a, b):
2
+ try:
3
+ return(float(a) - float(b))
4
+ except ValueError:
5
+ return "숫자를 입력하십시오."
0 commit comments