int関数
int関数は引数を整数型に変換します。複素数は引数として使えません。
>>> n=int("64") >>> n 64 >>> n=int(-2.4) >>> n -2 >>>
関連する関数 float, long, complex, str
ホーム