python print float in scientific notation

Solutions on MaxInterview for python print float in scientific notation by the best coders in the world

showing results for - "python print float in scientific notation"
Eugenie
04 Feb 2016
1v = 2.50435-e03
2'%.2E' % v
3
4# returns '2.50E-03'