欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Python中函数的定义及调用(1)

程序员文章站 2022-03-17 12:57:08
...

Python中函数的定义及调用(1)

aa22.py

def fun(x,y):
    if x==y:
       return x+y
    else:
       return None
print fun(3,4)

aa77.py调用aa22.py

from aa22 import fun
my_fun = fun(6,6)
print my_fun

调用格式:

from 文件名 import 函数名
新定义xxx = 调用函数
print等使用新定义xxx
相关标签: python python