当前位置 : 主页 > 编程语言 > python >

【Python】How do I convert a string to a double in Python?

来源:互联网 收集:自由互联 发布时间:2022-06-15
Date: 2018.5.30 Reference: ​​https://stackoverflow.com/questions/482410/how-do-i-convert-a-string-to-a-double-in-python​​ Method1: pi = ‘3.1415926’ float(pi) 3.1415926 Method2: from decimal import Decimal x = “234243.434” pr


Date: 2018.5.30


Reference:

​​https://stackoverflow.com/questions/482410/how-do-i-convert-a-string-to-a-double-in-python​​

Method1:



pi = ‘3.1415926’
float(pi)
3.1415926



Method2:



from decimal import Decimal
x = “234243.434”
print Decimal(x)
234243.434






网友评论