函数形参和实参

def cal(x,y):。。形参
    s=x**y   。。x的y次方
    return s
c=cal(2,3) ..实参
print(c)
原文地址:https://www.cnblogs.com/wfl9310/p/8922547.html