Generation

generate functionMon, 10 Apr 2023

Calculando el logaritmo en base 10 de un número ingresado por teclado

import math def log(c): return math.log10(c) log(100)

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