Python在函数外部调用函数内部的变量有两种方法:1.使用return;2.使用global声明变量;
1.使用return:
# 在函数外部调用函数内部变量两种方法:1.使用return 2.使用global声明变量
def test():a = '11111'return a# out = test()
# print(out)
print(test())#11111
2.使用global声明变量:
def test():global aa = '22222'
test()
print(a)# 22222
本文链接:https://my.lmcjl.com/post/4998.html
展开阅读全文
4 评论