예제 #1
0
파일: p04.py 프로젝트: iflyBird/20191013
from p01 import Student, sayHello

stu = Student()
stu.say()
sayHello()
예제 #2
0
from p01 import Student, sayHello

stu = Student("p04")
stu.say()
sayHello()
예제 #3
0
from p01 import Student, sayHello
stu = Student('xixi', 18)
stu.say()
sayHello()
예제 #4
0
파일: p03.py 프로젝트: pythonkd/python
from p01 import Student
stu = Student("lili", 18)
stu.say()
예제 #5
0
파일: p03.py 프로젝트: rarkzy/learn_python
from p01 import Student, Sayhello

stu = Student("小强", 22)
stu.say()
Sayhello()
예제 #6
0
파일: 02.py 프로젝트: CcCc1996/myprogram
# -*- 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()
예제 #7
0
from p01 import Student, sayHello

stu = Student("Jim", 28)

print(stu.age)
stu.say()

sayHello()
예제 #8
0
파일: p05.py 프로젝트: libzhu/learnPython
# coding=utf-8

from p01 import Student, sayHello

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

sayHello()
예제 #9
0
파일: p04.py 프로젝트: sczhan/study
from p01 import Student, sayhello

stu = Student("p04", 13)
stu.say()
sayhello()
예제 #10
0
파일: p02.py 프로젝트: Lkamanda/rccode
'''
调用模块 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()