float関数


float関数は、引数を実数に変換します。引数は整数の他、文字列も可能ですが、複素数は指定できません。

>>>a = float("1.45")
>>>print a
1.45
>>>

 

関連する関数
 int, long, complex, str

 

ホーム