i 由于在子程序当中,我想设置成全局变量,这样i可以累加。最后,成功了,代码如下!
global i
i = 0
def fun1():
global i
for j in "python":
print(j,i)
i=i+1
def fun2():
for j in "123":
fun1()
fun2()
运算结果如图:
i 由于在子程序当中,我想设置成全局变量,这样i可以累加。最后,成功了,代码如下!
global i
i = 0
def fun1():
global i
for j in "python":
print(j,i)
i=i+1
def fun2():
for j in "123":
fun1()
fun2()
运算结果如图: