类5.类属性的引用

定义

类属性的引用就是引用类的时候,在类的后面加的那个.

使用说明

类.属性

问题

写出一个类,尽可能多的写出类的属性,并priint出来。

参考答案

class shengwu():
    zhonglei=['animal','plant','weishengwu']
    size=['huge','big','small']
    number=44
shengwu_for_earth=shengwu()
for element in shengwu_for_earth.size:
    print(element)

print(shengwu_for_earth.zhonglei)
print(shengwu_for_earth.number)
print(shengwu_for_earth.size)

参考:侯爵的《编程小白的第一本Pyhton入门书》

你可能感兴趣的:(类5.类属性的引用)