Computer Science, asked by sakshimishra1175, 10 months ago

Explain loglO(x) in Python with example.

Answers

Answered by Abhis506
0

Notice the syntax of the call to func2(). Since kwargs is a Python dict, we can't just pass it to func2(). We have to “unpack” it into a sequence of keyword arguments, and the ** operator does that. Hope it helps ✌️

Answered by laraibmukhtar55
1

Function of log10 (x) in python:

  • Python number system of log 10() returns the base-10 logarithm of x for x > 0.
  • Log 10 (x) is the value mainly used in the calculation of the logarithm of x to the base of 10. Python log10(x) is an inbuilt function that is used to get the logarithm of any specified number with base 10
  • The log 10 function usually returns the logarithm of x to the base of 10.

Hope it helped..

Similar questions