python 定义函数 两个文件调用函数
Posted 爱白菜的小昆虫
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 定义函数 两个文件调用函数相关的知识,希望对你有一定的参考价值。
在def_function.py文件里面写
#coding=utf-8 #定义函数 def hello(): print "hello world"
在test.py里面调用
#coding=utf-8 from def_function import hello #from def_function import * #导入该文件里的所有函数 #调用函数 hello()
在cmd下调用
以上是关于python 定义函数 两个文件调用函数的主要内容,如果未能解决你的问题,请参考以下文章