Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
math.log versus math.log10
#7
Don't count on it.
import math
greater = 0
lesser = 0
for counter in range(1,100):
    if math.log10(counter) > math.log(counter,10):
        greater += 1
    else:
        lesser += 1
print(greater, lesser)
Output:
64 35
I then did it for a million
Output:
583631 416368
Reply


Messages In This Thread
math.log versus math.log10 - by stevendaprano - May-22-2022, 11:44 AM
RE: math.log versus math.log10 - by jefsummers - May-22-2022, 12:05 PM
RE: math.log versus math.log10 - by stevendaprano - May-23-2022, 01:51 AM
RE: math.log versus math.log10 - by Gribouillis - May-23-2022, 07:19 AM
RE: math.log versus math.log10 - by DeaD_EyE - May-23-2022, 01:04 PM
RE: math.log versus math.log10 - by snippsat - May-23-2022, 02:09 PM
RE: math.log versus math.log10 - by jefsummers - May-23-2022, 02:11 PM
RE: math.log versus math.log10 - by stevendaprano - May-23-2022, 02:35 PM
RE: math.log versus math.log10 - by Gribouillis - May-23-2022, 02:21 PM
RE: math.log versus math.log10 - by Gribouillis - May-23-2022, 08:34 PM
RE: math.log versus math.log10 - by jefsummers - May-23-2022, 08:59 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  math.remainder(a, b) question Hudjefa 1 702 Sep-08-2024, 08:29 AM
Last Post: deanhystad
  __dict__ in math library akbarza 6 2,481 Sep-28-2023, 08:23 AM
Last Post: buran
  How to do "fixed size" (wrapping) math in Python? AlexanderWulf 13 5,207 Jul-19-2023, 04:13 PM
Last Post: deanhystad
  math problem for experts miltmobley 5 2,689 Jul-09-2023, 07:14 AM
Last Post: Gribouillis
  Math python question Deonvek 6 2,251 Apr-05-2023, 09:27 PM
Last Post: deanhystad
  math formula does not give the same result as bash script [SOLVED] AlphaInc 3 1,692 Apr-02-2023, 07:21 PM
Last Post: AlphaInc
  Determine if keyboard interrupt versus SIGINT trapped? Jibunnokage 5 3,454 Sep-30-2022, 06:54 AM
Last Post: Gribouillis
  Convert SQLite Fetchone() Result to float for Math Extra 13 6,236 Aug-02-2022, 01:12 PM
Last Post: deanhystad
Question Parameterized math calculations? babaliaris 7 18,266 Jun-01-2022, 10:19 AM
Last Post: Gribouillis
  Math Package in python Uma 1 2,056 Dec-12-2021, 02:01 PM
Last Post: jefsummers

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020