Created
July 14, 2017 02:20
-
-
Save da2x/662bf2afb29bbc30c14f67ac0e379342 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
>>> test = 0.8 | |
>>> test -= 0.2 | |
>>> print(test) | |
0.7000000000000001 | |
>>> test = 0.8 | |
>>> test -= 0.1 | |
>>> print(test) | |
0.7000000000000001 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment