partie1_ex13_2.py

Created by cahier-indice-algo-1techno

Created on April 22, 2022

170 Bytes


from math import pi

def Volpiscine(r, h):
    V = pi * r**2 * h
    return V

def Prix(h):
    V = Volpiscine(1.3, h)
    p = 2.73 * V
    return p