python4.1定义函数
2020-12-13 04:23
                         标签:return   ==   def   lse   src   alt   mamicode   res   info    def add(a,b,c,d): result=add(21,32,43,56)   def zzj(f):   python4.1定义函数 标签:return   ==   def   lse   src   alt   mamicode   res   info    原文地址:https://www.cnblogs.com/lma0702/p/11109288.html
    e=a+b+c-d
    return e
print("加和结果是:",result)
    if f=="苹果"or f=="桃子" or f=="西瓜":
        print("正在榨汁!")
        print("两分钟后。。。。")
        zhi="一杯"+f+"汁"
        return zhi
    else:
        print("榨汁机坏了 !")
guozhi=zzj("西瓜")
print(guozhi)