andresordonez Messages 65 Reaction score 0 Thread starter Oct 27, 2010 #1 Hi, I'm tired of reading numbers like 695500000, and using %e all the time is not a practical solution. Thanks.
Hi, I'm tired of reading numbers like 695500000, and using %e all the time is not a practical solution. Thanks.
Coin Messages 564 Reaction score 1 Oct 30, 2010 #2 The Python "interactive mode" is just a REPL loop. You can write your own REPL loop in python pretty easily, and then you will have full control over how output is printed. http://blog.hackthology.com/writing-an-interactive-repl-in-python Last edited by a moderator: May 5, 2017
The Python "interactive mode" is just a REPL loop. You can write your own REPL loop in python pretty easily, and then you will have full control over how output is printed. http://blog.hackthology.com/writing-an-interactive-repl-in-python
andresordonez Messages 65 Reaction score 0 Dec 22, 2010 #3 Thanks, though I thought it could be easier than that. I guess I could modify somehow some code of the interpreter.
Thanks, though I thought it could be easier than that. I guess I could modify somehow some code of the interpreter.