from p01 import Student stu = Student("zhangsan", 20) stu.say()
# _*_ coding:UTF-8 _*_ # 选择性导入,模块内容 from p01 import Student, sayHello stu = Student('wujian') stu.say() sayHello('BOX')
from p01 import Student, sayhello stu = Student('xiaoming', 18) sayhello()
from p01 import Student, sayhello stu = Student("p04", 13) stu.say() sayhello()
from p01 import Student, sayhello stu = Student("xiaohong", 23) stu.Say() sayhello()
from p01 import Student, say stu = Student() stu.sayHello() say()
from p01 import Student, sayHello stu = Student("Guoyou") stu.say() sayHello()
from p01 import Student, sayHello stu = Student("p04") stu.say() sayHello()
from p01 import Student, sayHello stu = Student('xixi', 18) stu.say() sayHello()
from p01 import Student stu = Student("lili", 18) stu.say()
from p01 import Student, Sayhello stu = Student("小强", 22) stu.say() Sayhello()
# -*- coding: utf-8 -*- # Author: IMS2017-MJR # Creation Date: 2019/5/5 import p01 # 导入这个模块,就相当于将模块中的代码粘贴到了这里并执行一遍,所以其中print等代码会直接执行,最好不要有。 stu = p01.Student("cjx", 22) stu.say() p01.sayHello() print("#" * 50) import p01 as p stu = p.Student("anran", 22) stu.say() p.sayHello() print("#" * 50) from p01 import Student, sayHello stu = Student("cwy", 0) # 此时p01.的前缀都不需要,否则会报错 stu.say() sayHello()
from p01 import Student, sayHello stu = Student("Jim", 28) print(stu.age) stu.say() sayHello()
# coding=utf-8 from p01 import Student, sayHello stu = Student("xiaoxiao", 28) stu.say() sayHello()
from p01 import Student, sayHello stu = Student("Zhou", 55) stu.say() sayHello()
from p01 import Student, sayHello stu = Student("wtj") stu.say() sayHello()
from p01 import Student, sayhello stu = Student() stu.into() sayhello()
from p01 import Student, sayHello stu = Student("xiaojing", 20) stu.say() sayHello() print(__name__)
from p01 import Student, sayHello stu = Student("yuyu", 11) stu.say() sayHello()
from p01 import Student, sayHello stu = Student() stu.say() sayHello()
from p01 import Student, sayhello stu = Student() stu.say() sayhello()
''' 调用模块 p01 ''' import p01 stu = p01.Student("xiaolin", 22) stu.say() p01.sayHello() print('*' * 10) # 对命名错误的包借助于工具 importlib 导入 import importlib # 相当于导入一个包为01 的包,并把导入的模块赋值给了xiaolin xiaolin = importlib.import_module('01') stu1 = xiaolin.Student('kaka', 25) stu1.say() xiaolin.sayHello() from p01 import Student stu2 = Student() stu2.say()