Python通过函数名调用函数的几种场景
 华为或超聚变服务器安装linux
 你知道":=“和”//"在python里面代表什么吗?这篇《python运算符》介绍,你肯定不想错过
 SQLAlchemy通过@contextmanager简化回滚操作
 如何理解python的sqlalchemy这种orm框架?
 ubuntu-22.04.1网络配置
 python使用@contextmanager来定义上下文管理器(一篇文章,彻底明白!码文并茂,简单明了)和 yield 和 enter 和 exit


class Circle:
    def __init__(self, radius):
        self._radius = radius
 
    @property
    def area(self):
        return 3.14 * self._radius ** 2
 
    @area.setter
    def area(self, value):
        self._radius = (value / 3.14) ** (1/2)
 
    @area.deleter
    def area(self):
        del self._radius
 
circle = Circle(5)
print(circle.area)
circle.area = 153.14  # 设置 area 会自动设置 radius
print(circle.radius)
del circle.area  # 删除 area 会自动删除 radius
 
python: https://zhuanlan.zhihu.com/p/698852152



![[SDK]-组合框 和 列表框控件](https://i-blog.csdnimg.cn/direct/52ae953251da42e7975f7a6eae3afcac.gif)







![[Xpath] Xpath基础知识](https://i-blog.csdnimg.cn/direct/5b06e4310b5e4c31a6ac7169c8c9d2c2.png)






![[数据集][目标检测]井盖丢失未盖破损检测数据集VOC+YOLO格式2890张5类别](https://i-blog.csdnimg.cn/direct/31cf5cd2f3cd4257a13e5fb30d7908a0.png)
