In [1]:
def
sum_three
(
first
,
second
,
third
):
fourth
=
first
+
second
+
third
return
fourth
In [2]:
sum_three
(
10
,
20
,
30
)
Out[2]:
60
In [ ]: