Generation

generate functionTue, 23 May 2023

Hallar el área de un círculo, dado el radio como parámetro

import math def circle_area(radio): return math.pi * radio ** 2 circle_area(3)

Want to kickstart your project?Use the new AI Studio to create your code