Given that the format is consistent (and the last char is not part of the number you want), you can probably do something like this:
x = int('10944800e'[:-1]) Disclaimer: I am a n00b. YMMV ;-) -- http://mail.python.org/mailman/listinfo/python-list
Given that the format is consistent (and the last char is not part of the number you want), you can probably do something like this:
x = int('10944800e'[:-1]) Disclaimer: I am a n00b. YMMV ;-) -- http://mail.python.org/mailman/listinfo/python-list