1. 首页
  2. 数据库
  3. 其它
  4. 对python模块中多个类的用法详解

对python模块中多个类的用法详解

上传者: 2021-02-01 09:44:05上传 PDF文件 36.71KB 热度 36次
如下所示: import wuhan.wuhan11 class Han: def __init__(self, config): self.batch_size = config.batch_size self.num_steps = config.num_steps class config: batch_size = 10 num_steps = 50 if __name__ == '__main__': han = Han(config) print(han.batch_size) print(han.num_steps) 输出结果: /home/ubuntu/
用户评论