声明:以下代码都是在写程序中遇到的一些运行出错的代码,并不明白为什么会出错。会随时在这个帖子中增加内容。
希望有大佬可以解释!不胜感激!
1、场景:函数中调用其他函数
#运行错误的代码
def secondfuction(i):
i=i+1
print(i)
def firstfuction(i):
i=1
print("i is")
while i<=10:
secondfuction(i)
firstfuction(i=1)
#运行正确的代码
def secondfuction(i):
print(i)
def firstfuction(i):
i=1
print("i is")
while i<=10:
i=i+1
secondfuction(i)
firstfuction(i=1)