ホームページ >バックエンド開発 >Python チュートリアル >Python組み込み関数OCTの詳細説明
英語ドキュメント:
oct ( x ) Convert an integer number to an octal string. The result is a valid Python expression. If x is not a Pythonobject, it has to define anmethod that returns an integer.
説明:
1. この関数は、整数を 8 進数の文字列に変換します。浮動小数点数または文字列を渡すと、エラーが報告されます。
>>> a = oct(10) >>> a '0o12' >>> type(a) # 返回结果类型是字符串 <class 'str'> >>> oct(10.0) # 浮点数不能转换成8进制 Traceback (most recent call last): File "<pyshell#3>", line 1, in <module> oct(10.0) TypeError: 'float' object cannot be interpreted as an integer >>> oct('10') # 字符串不能转换成8进制 Traceback (most recent call last): File "<pyshell#4>", line 1, in <module> oct('10') TypeError: 'str' object cannot be interpreted as an integer
2. 受信パラメータが整数でない場合、それは __index__ を定義し、整数関数を返すクラスのインスタンス オブジェクトである必要があります。
# __index__ 関数が定義されていないため変換できません
>>> class Student:
def __init__(self,name,age):
self.name = name
self.age = age
>>> a = Student('Kim',10)
>>> oct(a)
ファイル "1f9b0a7176d4300462209b47494ce836"、1 行目、4225fa317875f3e92281a7b1a5733569
oct(a)
TypeError: 'Student' オブジェクトは整数として解釈できません
# __index__ 関数は定義されていますが、戻り値はint 型ではないため、変換できません
>>> class Student: def __init__(self,name,age): self.name = name self.age = age def __index__(self): return self.name >>> a = Student('Kim',10) >>> oct(a) Traceback (most recent call last): File "<pyshell#18>", line 1, in <module> oct(a) TypeError: __index__ returned non-int (type str) # 定义了__index__函数,而且返回值是int类型,能转换 >>> class Student: def __init__(self,name,age): self.name = name self.age = age def __index__(self): return self.age >>> a = Student('Kim',10) >>> oct(a) '0o12'
以上が Python の組み込み関数 OCT の詳細な説明です。その他の関連記事については、PHP 中国語 Web サイト (www.php.cn) に注目してください。