Nauč se Python > Kurzy > Beginners course PyLadies > Functions > Custom functions

Custom functions – Řešení [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.')

Toto je stránka lekce z kurzu, který probíhá nebo proběhl naživo s instruktorem.