當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python exponential轉float用法及代碼示例


給定一個 index 格式的數字,任務是編寫一個 Python 程序將數字從 index 格式轉換為浮點數。 index 數是表示數字的一種方式。

例子:

Input: 1.900000e+01
Output: 19.0

Input: 2.002000e+03
Output: 2002.0

Input: 1.101020e+05
Output: 110102.0

方法:

  • 首先,我們將聲明一個 index 數並將其保存在一個變量中。
  • 然後我們將使用 float() 函數將其轉換為浮點數據類型。
  • 然後我們將打印轉換後的數字。

用法:

float(x)

float() 方法用於從數字或字符串返回浮點數。



例:

Python3


# Python program to convert exponential to float
  
# Declaring the exponential number
exp_number = "{:e}".format(110102)
  
# Converting it to float data type
float_number = float(exp_number)
  
# Printing the converted number
print("Exponent Number:",exp_number)
print("Float Number:",float_number)

輸出:

Exponent Number:1.101020e+05
Float Number:110102.0

相關用法


注:本文由純淨天空篩選整理自aditya_taparia大神的英文原創作品 Python program to convert exponential to float。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。