# main.pyimport supportlibrarys = supportlibrary.says.nema("at","SB")s.hello()s.saytime()
# supportlibrary.pyimport timeclass say: def nema(a,b): print("{0} say:{1}".format(a,b)) def hello(): print("hello world") def saytime(): print(time.time())
请放在同个目录下,supportlibrary.py不能编译!(此项目不做解释,自行理解)
code china 项目
运行main
简单实例+说明# main.pyimport supportlibrary# 引入函数文件s = supportlibrary.say# 将supportlibrary.say简化为ss.hello()# 执行函数hello
# supportlibrary.pyclass say:# 定义say类 def hello():# 定义hello函数 print("hello world")# 打印hello world
知识点视频(转载)面向对象
引入Python文件
以上是内存溢出为你收集整理的python跨文件函数全部内容,希望文章能够帮你解决python跨文件函数所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)