partie1_ex13_1.py

Created by cahier-indice-algo-1techno

Created on April 22, 2022

99 Bytes


from math import pi

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