python中形式参数和实际参数

1、

>>> def a(x):       ## 形参为x, 实参为50。
    print(x * 100)

    
>>> a(x = 50)
5000
原文地址:https://www.cnblogs.com/liujiaxin2018/p/14478547.html