L3.八.global
Posted psy0508
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了L3.八.global相关的知识,希望对你有一定的参考价值。
a = 0
for i in range(1,101):
a += i
print(a)
##
# total = 0
# def add1():
# global total ###(全局变量 global)
# total += 1
# add1()
# add1()
# add1()
#
# print(total)
### (了解) nonlocal
def outer():
num = 10
def inner():
num =100
print(num)
inner()
print(num)
outer()
以上是关于L3.八.global的主要内容,如果未能解决你的问题,请参考以下文章
在 c++ 程序中调试链接列表以添加两个数字:有人可以解释为啥 l3=l3->next;导致错误?
天梯赛 L2城市间紧急救援L3天梯地图L3直捣黄龙L3地铁一日游保姆级注释题解
天梯赛 L2城市间紧急救援L3天梯地图L3直捣黄龙L3地铁一日游保姆级注释题解
天梯赛 L2城市间紧急救援L3天梯地图L3直捣黄龙L3地铁一日游保姆级注释题解