学习是最好的投资!
def test(): num = 0 num += 1 return num def test2(): new_num = test() print test()
可以直接引用函数名test(),或赋值给其他变量:new_num = test()。
可以直接引用函数名test(),或赋值给其他变量:new_num = test()。