ch01_ex42_prof.py

Created by manuel-2de-indice2019

Created on October 11, 2019

103 Bytes


def f(x,y,z):
    if x>0:
        t=x+y+z
    else:
        t=x*y*z
    return(t)