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)

Questions about programming?Chat with your personal AI assistant