diff --git a/native-datatypes.html b/native-datatypes.html index fc41ec3..db78e56 100755 --- a/native-datatypes.html +++ b/native-datatypes.html @@ -105,7 +105,7 @@ ZeroDivisionError: int division or modulo by zero
  • You can explicitly coerce an int to a float by calling the float() function.
  • Unsurprisingly, you can also coerce a float to an int by calling int().
  • The int() function will truncate, not round. -
  • The int() function truncates negative numbers towards 0. It’s a true truncate function, not a a floor function. +
  • The int() function truncates negative numbers towards 0. It’s a true truncate function, not a floor function.
  • Floating point numbers are accurate to 15 decimal places.
  • Integers can be arbitrarily large.