摘要: 类(Class)和实例(Instance) 定义类是通过class关键字:class Student(object): pass class后面紧接着是类名,即Student接着是(object),表示该类是从哪个类继承下来的 根据Student类创建出Student的实例,创建实例是通过类名+() 阅读全文
posted @ 2018-02-22 10:03 夜游星 阅读(1174) 评论(0) 推荐(1) 编辑
摘要: 使用模块 #!/usr/bin/env python3# -*- coding: utf-8 -*- ' a test module ' __author__ = 'Name '第1行注释可以让这个hello.py文件直接在Unix/Linux/Mac上运行,第2行注释表示.py文件本身使用标准UT 阅读全文
posted @ 2018-02-22 09:33 夜游星 阅读(132) 评论(0) 推荐(0) 编辑