导入模块,导入函数,导入类

from random import randint    # 导入random模块的randint函数

from random import *      #导入random模块的所有函数

import 模块名(文件名)                          import game

akl = 模块名.类名( 传入参数 )              akl.game.Class(角色名,生命值,护甲)

akl.hi( 参数 )                                         akl.hi( '你好' )

# hello.py

def hi(kk):

      print('我的名字是:%s'%kk)

akl=22

ak=33

 # ceshi.py

import hello
hello.hi('li')
print(hello.akl+hello.ak)      #可直接调用akl和ak

 

调用的时候可使用 ( from hello as t )   可减少代码量
 

你可能感兴趣的:(python)