Answers for "python print exponential form"

2

python print float in scientific notation

v = 2.50435-e03
'%.2E' % v

# returns '2.50E-03'
Posted by: Guest on March-17-2020

Python Answers by Framework

Browse Popular Code Answers by Language