집 > Q&A > 본문
阿神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()。