#coding=utf-8 a=5 def test(): global a print(a) test()
输出
5
例子
#coding=utf-8 a=5 def test(): global a a=10 test() print(a)
输出
10
原文地址:https://www.cnblogs.com/sea-stream/p/10765853.html
时间: 2024-10-20 00:39:55
#coding=utf-8 a=5 def test(): global a print(a) test()
输出
5
例子
#coding=utf-8 a=5 def test(): global a a=10 test() print(a)
输出
10
原文地址:https://www.cnblogs.com/sea-stream/p/10765853.html