For full text search please use the '?' prefix. e.g. ? Onboarding
Take the Derivative
Python
def
derive
(
coeff
,
exp
)
:
return
str
(
coeff
*
exp
)
+
"x^"
+
str
(
exp
-
1
)
;
Tags
python (Private)
8-kyu (Private)
codewars (Private)
answer (Private)
Python