Custom functions – Solution [0]

from math import pi

def ellipse(a, b): 
    return pi * a * b

print('The ellipsis area with 3 cm and 5 cm axes length is', ellipse(3, 5),'cm2.')