全局变量

a = 1
def fun():
    global a
    a = 2

fun()
print(a)

 

posted @ 2017-01-06 22:41  想吃天鹅肉的呱呱  阅读(109)  评论(0编辑  收藏  举报