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 定义函数 两个文件调用函数的主要内容,如果未能解决你的问题,请参考以下文章

Python函数

php 一个自定义的try..catch包装器代码片段,用于执行模型函数,使其成为一个单行函数调用

python函数声明和调用(18)

Python基础 08函数基础

python基础——函数

Python中的函数