您的位置:首页 > 编程语言 > Python开发

python模块中多个类用法

2016-12-18 19:53 302 查看
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/workspace/pythondemo/env/bin/python /home/ubuntu/workspace/BioEvent/wuhan/Han.py

10

50

Process finished with exit code 0

刚学习Python,所以一点点学会的东西都想要记载怕秀逗脑袋瓜记不住:

感悟: 1. batch_size和num_steps可以理解成类Han的成员变量

           2. class 类型 可以不用实例化直接作为参数使用

           3. 模块中可以有多个类
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  python