zoukankan      html  css  js  c++  java
  • Python内置函数(46)——oct

    英文文档:

    oct(x)
    Convert an integer number to an octal string. The result is a valid Python expression. If x is not a Python int object, it has to define an __index__() method 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)
    Traceback (most recent call last):
      File "<pyshell#12>", line 1, in <module>
        oct(a)
    TypeError: 'Student' object cannot be interpreted as an integer
    
    # 定义了__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'
  • 相关阅读:
    指定的参数已超出有效值的范围。参数名:sit ,先仔细看看错误和我的一样不一样
    简单说下C#变量的作用域
    C#常用的字符串处理方法
    驼峰命名、帕斯卡命名、匈牙利命名--三种命名方法
    Python的安装
    Python下numpy的使用
    命名法:骆驼(Camel)、帕斯卡(pascal)、匈牙利(Hungarian)、下划线(_)
    PHP中高级面试问题集锦
    利用python,生成word
    python实现网页截图
  • 原文地址:https://www.cnblogs.com/sesshoumaru/p/6042753.html
Copyright © 2011-2022 走看看