编程语言
首页 > 编程语言> > Python当中的内置函数【杭州多测师】【杭州多测师_王sir】

Python当中的内置函数【杭州多测师】【杭州多测师_王sir】

作者:互联网

#getattr函数  
#getattr() 函数用于返回一个对象属性值。
class Test(object):

    head = 1

    def __init__(self,name):
        self.name = name

    @classmethod
    def func(cls):
        cls.num = 666
        num1 = 888

t = Test('xiaowang')
result = getattr(t,"head")
print(result)  #结果:1

 

bin() 返回一个整数 int 或者长整数 long int 的二进制表示。

 

标签:__,sir,多测师,name,int,getattr,result,Test,杭州
来源: https://www.cnblogs.com/xiaoshubass/p/16511957.html