摘要: 1 # !/usr/bin/env python 2 # coding:utf-8 3 4 5 class TestProperty: 6 7 def __init__(self): 8 self.num = 1 9 10 @property 11 def get_num(self): 12 ret 阅读全文
posted @ 2021-09-07 22:32 gtea 阅读(152) 评论(0) 推荐(0) 编辑