찾다

 >  Q&A  >  본문

python3.x - python中一个函数如何调用另一个函数的返回值?

PHPzPHPz2770일 전596

모든 응답(1)나는 대답할 것이다

  • 阿神

    阿神2017-04-17 16:09:49

    def test():
        num  = 0
        num += 1
        return num
        
    def test2():
        new_num = test()
        print test()

    可以直接引用函数名test(),或赋值给其他变量:new_num = test()。

    회신하다
    0
  • 취소회신하다