How does one make the math module spit out actual values without using
engineer or scientific notation?
I get this from <code>print math.pow(2,64)</code>:
1.84467440737e+ 19
I want this:
18,446,744,073, 709,551,616
I'm lazy... I don't want to convert it manually :)
engineer or scientific notation?
I get this from <code>print math.pow(2,64)</code>:
1.84467440737e+ 19
I want this:
18,446,744,073, 709,551,616
I'm lazy... I don't want to convert it manually :)
Comment