Spaces:
Sleeping
Sleeping
Added more information to doc string
Browse files
app.py
CHANGED
@@ -14,7 +14,7 @@ def my_calculator(arg1:int, arg2:int, op:str)-> int: #it's import to specify the
|
|
14 |
Args:
|
15 |
arg1: the first argument
|
16 |
arg2: the second argument
|
17 |
-
op: the operation
|
18 |
"""
|
19 |
match op:
|
20 |
case "*" | "multiplication":
|
|
|
14 |
Args:
|
15 |
arg1: the first argument
|
16 |
arg2: the second argument
|
17 |
+
op: the operation, e.g. multiplication, division, addition, or subtraction.
|
18 |
"""
|
19 |
match op:
|
20 |
case "*" | "multiplication":
|