suchen

Heim  >  Fragen und Antworten  >  Hauptteil

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

PHPzPHPz2771 Tage vor597

Antworte allen(1)Ich werde antworten

  • 阿神

    阿神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()。

    Antwort
    0
  • StornierenAntwort