python
创造自己的函数,使代码更简洁,减少重复劳动
def tell():#自定义函数
print("hello world")
tell()#调用函数
#结果为hello world
def tell():#自定义函数
print(1+2)
tell()#调用函数
#结果为3
def tell(name,date,do):#自定义函数
print("%s"%name)
print("今天是%s"%date)
print("你要去%s"%do)
tell("小明","星期五","上学")#调用函数
'''结果为小明
今天是星期五
你要去上学'''
def tell(name):#自定义函数
print("为",end="")
print("%s"%name,end="")
print("乾杯[]~ ̄▽ ̄~*")
tell("野犬",)#调用函数
#结果为 为野犬乾杯[]~ ̄▽ ̄~*
def mail(name,tel,address="广州"):
print("姓名:%s"%name)
print("电话:%s"%tel)
print("住址:%s"%address)
mail("小明","678901")#地址默认广州
mail("李华","123456","上海")
'''结果 姓名:小明
电话:678901
住址:广州
姓名:李华
电话:123456
住址:上海'''
def mul(num1,num2):
res=num1*num2
return res
result=mul(4,5)
print(result)
#结果为20
#但不可print(res),(res)为局部变量,不是全局变量
def max(*nums):#*nums,标识传递参数使用包裹的位置
max=0
for num in nums:
if (num>max):
max=num
return max
maxNum=max(1,2,3,4,5,6,7,8,9)
print("最大值:")
print(maxNum)#结果为9