# 可变类型 list dict set
# 不可变类型 ser tuple int float bool,必须声明 global() 才能修改
names=["赵琴","赵艳萍","小苗"] #这里面是全局变量
def add_name():
name=input("name:")
names.append(name) #可变类型的直接就可以调用
add_name()
print(names)
#递归,自己调用自己 998,需要给一个结束条件
def hahaha():
print("hahaha")
hahaha() #变成死循环了 超过了递归的最大次数了 也是循环
def hahaha():
number = input("number:")
if not number.isdigit() or int(number) <1 :
print("请输入大于0的正整数")
hahaha()
hahaha()
全局变量
转载本文章为转载内容,我们尊重原作者对文章享有的著作权。如有内容错误或侵权问题,欢迎原作者联系我们进行内容更正或删除文章。
上一篇:The operator - is undefined for the argument type(s) String, int 【参数类型字符串int的运算符-未定义】
下一篇:mintui弹窗滚动穿透的问题
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
Cocos Creator 3.8游戏开发中全局变量管理方案探索
本文给出Cocos Creator 3.8+Typescript编程环境下,开发一款游戏时如何管理全局变量的可能的解决方案。
全局变量 Cocos Creator Typescript Redux MobX -
php 全局变量和超全局变量
只能这样使用! 超全局变量可以在整个网站内使用:
全局变量 数组 当前页