「python」float()で数字の文字列を浮動小数点数に変換する

2021年1月10日

使用例

# coding: utf-8
#!/usr/bin/python3

print(float('6.78'))
print(float('880'))
print(float('12345'))

実行結果
>python test.py
6.78
880.0
12345.0

Python

Posted by arkgame