Generation

generate functionWed, 30 Nov 2022

make a calculator to fetch the average of 3 numbers

def average(a, b, c): return (a + b + c) / 3 average(1, 2, 3)

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