79816018

Date: 2025-11-10 19:52:32
Score: 1
Natty:
Report link

You can just format with high precision and cut the string to the desired number of characters (Python 3):

f"{value:.6f}"[:8]

Note that it doesn't handle overflow well; in this case numbers that require more than 8 digits.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Heiner Tholen