Tagged Questions
6
votes
3answers
1k views
Pure Python rational numbers module for 2.5
Has anybody seen such a thing? Small self-sufficient modules are preferred.
5
votes
10answers
2k views
How to convert rational and decimal number strings to floats in python?
How can I convert strings which can denote decimal or rational numbers to floats
>>> ["0.1234", "1/2"]
['0.1234', '1/2']
I'd want [0.1234, 0.5].
eval is what I was thinking but no luck:
...