Logarithm Calculator || Python

preview_player
Показать описание

Рекомендации по теме
Комментарии
Автор

import math
base=int(input("Enter the base value: "))
number=int(input ("Enter the number value: "))
result=math.log(number, base)
print(f"The Log base {base} of {number} is: ", round (result))

mr.editoriiitian
visit shbcf.ru