Пример #1
0
from p01 import Student

stu = Student("zhangsan", 20)
stu.say()
Пример #2
0
# _*_ coding:UTF-8 _*_

# 选择性导入,模块内容
from p01 import Student, sayHello

stu = Student('wujian')
stu.say()
sayHello('BOX')
Пример #3
0
from p01 import Student, sayhello

stu = Student('xiaoming', 18)
sayhello()
Пример #4
0
from p01 import Student, sayhello

stu = Student("p04", 13)
stu.say()
sayhello()
Пример #5
0
from p01 import Student, sayhello

stu = Student("xiaohong", 23)
stu.Say()
sayhello()
Пример #6
0
from p01 import Student, say

stu = Student()
stu.sayHello()
say()
Пример #7
0
from p01 import Student, sayHello

stu = Student("Guoyou")

stu.say()

sayHello()
Пример #8
0
from p01 import Student, sayHello

stu = Student("p04")
stu.say()
sayHello()
Пример #9
0
from p01 import Student, sayHello
stu = Student('xixi', 18)
stu.say()
sayHello()
Пример #10
0
from p01 import Student
stu = Student("lili", 18)
stu.say()
Пример #11
0
from p01 import Student, Sayhello

stu = Student("小强", 22)
stu.say()
Sayhello()
Пример #12
0
# -*- 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()
Пример #13
0
from p01 import Student, sayHello

stu = Student("Jim", 28)

print(stu.age)
stu.say()

sayHello()
Пример #14
0
# coding=utf-8

from p01 import Student, sayHello

stu = Student("xiaoxiao", 28)
stu.say()

sayHello()
Пример #15
0
from p01 import Student, sayHello
stu = Student("Zhou", 55)
stu.say()
sayHello()
Пример #16
0
from p01 import Student, sayHello

stu = Student("wtj")
stu.say()

sayHello()
Пример #17
0
from p01 import Student, sayhello

stu = Student()
stu.into()

sayhello()
Пример #18
0
from p01 import Student, sayHello

stu = Student("xiaojing", 20)

stu.say()

sayHello()

print(__name__)
Пример #19
0
from p01 import Student, sayHello

stu = Student("yuyu", 11)
stu.say()

sayHello()
Пример #20
0
from p01 import Student, sayHello


stu = Student()

stu.say()


sayHello()
Пример #21
0
from p01 import Student, sayhello

stu = Student()
stu.say()

sayhello()
Пример #22
0
'''
调用模块 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()