Skip to content

Instantly share code, notes, and snippets.

@n1ckfg
Created November 26, 2025 17:53
Show Gist options
  • Select an option

  • Save n1ckfg/860a5471311dba0681d82bbe54645ec2 to your computer and use it in GitHub Desktop.

Select an option

Save n1ckfg/860a5471311dba0681d82bbe54645ec2 to your computer and use it in GitHub Desktop.
Float to int converter methods
def float_to_int(float_value, num_places):
multiplier = 10 ** num_places
return int(round(float_value * multiplier))
def int_to_float(int_value, num_places):
divisor = 10 ** num_places
return int_value / divisor
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment