Decimal#to_eng_string():to_eng_string()是一個Decimal類方法,如果需要指數,可以使用工程符號轉換為字符串。
用法:Decimal.to_eng_string()
參數:十進製值
返回:轉換為字符串
代碼1:to_eng_string()方法示例
# Python Program explaining
# to_eng_string() method
# loading decimal library
from decimal import *
# Initializing a decimal value
a = Decimal(1.898989)
b = Decimal(2.0)
# printing Decimal values
print ("Decimal value a : ", a)
print ("Decimal value b : ", b)
# Using Decimal.to_eng_string() method
print ("\n\nDecimal a with to_eng_string() method : ", a.to_eng_string())
print ("Decimal b with to_eng_string() method : ", b.to_eng_string())
輸出:
Decimal value a : 1.8989890000000000380708797820261679589748382568359375 Decimal value b : 2 Decimal a with to_eng_string() method : 1.8989890000000000380708797820261679589748382568359375 Decimal b with to_eng_string() method : 2
代碼2:to_eng_string()方法的示例
# Python Program explaining
# to_eng_string() method
# loading decimal library
from decimal import *
# Initializing a decimal value
a = Decimal(3.14)
b = Decimal(15)
# printing Decimal values
print ("Decimal value a : ", a)
print ("Decimal value b : ", b)
# Using Decimal.to_eng_string() method
print ("\n\nDecimal a with to_eng_string() method : ", a.to_eng_string())
print ("Decimal b with to_eng_string() method : ", b.to_eng_string())
輸出:
Decimal value a : 3.140000000000000124344978758017532527446746826171875 Decimal value b : 15 Decimal a with to_eng_string() method : 3.140000000000000124344978758017532527446746826171875 Decimal b with to_eng_string() method : 15
相關用法
- Python Decimal max()用法及代碼示例
- Python Decimal ln()用法及代碼示例
- Python Decimal min()用法及代碼示例
- Python Decimal exp()用法及代碼示例
- Python Decimal is_qnan()用法及代碼示例
- Python Decimal is_zero()用法及代碼示例
- Python Decimal shift()用法及代碼示例
- Python Decimal same_quantum()用法及代碼示例
- Python Decimal scaleb()用法及代碼示例
- Python Decimal radix()用法及代碼示例
- Python Decimal copy_negate()用法及代碼示例
- Python Decimal copy_abs()用法及代碼示例
- Python Decimal is_snan()用法及代碼示例
- Python Decimal logical_or()用法及代碼示例
- Python Decimal logical_and()用法及代碼示例
注:本文由純淨天空篩選整理自noobestars101大神的英文原創作品 Python | Decimal to_eng_string() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。