函数

  • def test(x):
        y=2*x+1
        return y
    print(test(3) )

    def test():
    x=3
    y=2*x+1
    return y
    print(test() )

     

posted on 2018-02-08 18:56  python_an  阅读(96)  评论(0编辑  收藏  举报

导航