long関数
long関数は引数をLong整数に変換します。
>>> n=long(1e8) >>> n 100000000L >>> n=long(67) >>> n 67L >>>
関連する関数 int, float, complex, str
ホーム