I am parsing a webpage which has Unicode representations of fractions. I would like to be able to take those strings directly and convert them to floats. For example:
"⅕" would become 0.2
Any suggestions of how to do this in Python?
|
feedback
|
|
You want to use the unicodedata module:
This will print:
If the character does not have a numeric value, then | |||||||||||||||
feedback
|
|
Since there are only a fixed number of fractions defined in Unicode, a dictionary seems appropriate:
Update: the | ||||
feedback
|
|
Maybe you could decompose the fraction using the "unicodedata" module and then look for the FRACTION SLASH character and then it's just a matter of simple division. For example:
Update: I'll leave this answer here for reference but using unicodedata.numeric() as per Karl's answer is a much better idea. | ||||
|
feedback
|
|
In Python 3.1, you don't need the 'u', and it will produce 0.2 instead of 0.20000000000000001 .
| |||||
feedback
|