如何将字符串 '5e-04' 解析为数字 0.0005?

How to parse string '5e-04' to numerical 0.0005?

如何将表示科学数字的字符串解析为数字?

>>> float('5e-04')
0.0005