天天看點

python b函數調用a函數變量

#!/usr/bin/env python
#coding:utf-8

def a():
    global i
    i = 'q'

def b():
    a()
    print i

b()