I'm making a command to help you read a globe.
entrada = int(input("Quantos centimetros no globo: "))
km = entrada * 425
m = km * 1000
cm = m * 100
print(entrada, "centimetros no globo equivalem a:", km, "quilometros", m,
"metros e", cm, "centimetros.")
input()
Where the command transforms the centimeters of the globe into real numbers (Numeric scale). But often, the M is a half-large number and it would be excellent to turn it into scientific notation. Assuming it's 20,000,000 m, can you create a line that "counts" how many zeros it has in the number and returns a value for me to do the conversion?