摘要: 52.python收集参数 def print_params(*params): # *接受元组,一个星号 print(params) def print_params2(tt2, *params): # *接受元组 print(tt2) print(params) def print_params 阅读全文
posted @ 2024-01-07 21:35 txwtech 阅读(8) 评论(0) 推荐(0) 编辑
摘要: employee就是包 导入包,使用时默认调用__init__.py文件 class Employee: __wwid = '' # 两个__下划线表示private私有变量 __name = '' wwid = 'cd987' # public公有变量 def set_wwid(self, wwi 阅读全文
posted @ 2024-01-07 21:18 txwtech 阅读(6) 评论(0) 推荐(0) 编辑
摘要: http://106.14.252.86/index.html usb摄像头测试软件 阅读全文
posted @ 2024-01-07 20:58 txwtech 阅读(1149) 评论(0) 推荐(0) 编辑