Created
July 12, 2018 18:42
-
-
Save aknik/949ae3c8406300c6e94a5ffd474fa7bf to your computer and use it in GitHub Desktop.
Python float division
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
>>> 64*1/float(125*1000) | |
0.000512 | |
>>> 64000*1/float(125*1000) | |
0.512 | |
>>> 64000000*1/float(125*1000) | |
512.0 | |
>>> 64000000*1/float(134.2*1000) | |
476.90014903129656 | |
>>> 32000000*1/float(134.2*1000) | |
238.45007451564828 | |
>>> 32000000*1/float(134.2*1000)/2 | |
119.22503725782414 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment