您的位置: 首页 > IT文章 > global 的作用 global 的作用 分类: IT文章 • 2025-02-06 12:38:19 a = 10 def test(): global a a = 5 print(a) test() print(a)