Answer the question
In order to leave comments, you need to log in
What should I do with Python multiplication?
What to do, if:
a = 100
b = 0.00000028
c = a*b
print(c)
Answer the question
In order to leave comments, you need to log in
Alternative option:
from decimal import Decimal
a = Decimal('100')
b = Decimal('0.00000028')
c = a * b
print(c)
# 0.00002800
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question