为什么这个count就变成了局部变量
import osimport easygui as g
def search_file(path):
os.chdir(path)
file_list = os.listdir(path)
for each_file in file_list:
if os.path.isfile(each_file):
extension = os.path.splitext(each_file)
if extension == '.txt':
fi = open(each_file)
for each_line in fi:
if not each_line.isspace():
count += 1
#--------------------------------------------------问题在下面这个count, 错误提示为UnboundLocalError: local variable 'count' referenced before assignment----------------
count_list.append(count)
fi.close()
else:
pass
else:
search_file(each_file)
os.chdir(os.pardir)
return count_list
def calculate(count_list):
sum1 = 0
for i in count_list:
sum1 += i
return sum1
path = g.diropenbox('请选择你的代码库', '文件浏览')
count = 0
count_list = []
if path != None:
b = search_file(path)
sum_code = calculate(b)
print('你已经写了%d行代码,还差%d行,继续加油!' % (sum_code, 100000 - sum_code))
Python 该死的作用域的问题import os
import easygui as g
def search_file(path):
os.chdir(path)
file_list = os.listdir(path)
for each_file in file_list:
if os.path.isfile(each_file):
extension = os.path.splitext(each_file)
if extension == '.txt':
global count
fi = open(each_file)
for each_line in fi:
if not each_line.isspace():
count += 1
count_list.append(count)
fi.close()
else:
pass
else:
search_file(each_file)
os.chdir(os.pardir)
return count_list
def calculate(count_list):
sum1 = 0
for i in count_list:
sum1 += i
return sum1
path = g.diropenbox('请选择你的代码库', '文件浏览')
count = 0
count_list = []
if path != None:
b = search_file(path)
sum_code = calculate(b)
print('你已经写了%d行代码,还差%d行,继续加油!' % (sum_code, 100000 - sum_code))
楼上正解 永恒的蓝色梦想 发表于 2020-5-25 21:45
Python 该死的作用域的问题
这是啥原理啊,我全局的count是可以正常传到函数内部的啊,不懂啊,比如以下这个:
count = 0
def a():
print(count + 1)
def b():
print(count + 1)
a()#-----打印:1,正常传入函数-----
b()#-----也打印:1,正产传入函数,不能调用给另一个函数--- Twilight6 发表于 2020-5-25 21:45
楼上正解
请你再解释一下{:5_109:}真看不懂的。。 失文 发表于 2020-5-25 21:49
这是啥原理啊,我全局的count是可以正常传到函数内部的啊,不懂啊,比如以下这个:
python 规定可以访问,禁止赋值 失文 发表于 2020-5-25 21:49
请你再解释一下真看不懂的。。
就是 你不改变原值就不会发生屏蔽效果 你改变了原值 就会发生屏蔽效果 本帖最后由 Twilight6 于 2020-5-25 22:00 编辑
失文 发表于 2020-5-25 21:49
请你再解释一下真看不懂的。。
count是全局变量 {:10_277:}
这里函数外部的变量叫全局变量,当函数内部有个和函数外部变量名相同的变量,会启动' 屏蔽 ' 机制
函数内部会临时创建一个局部变量 来覆盖同名的全局变量,屏蔽函数外部的同名变量,一出该函数范围,局部变量就消失了,又变回原来的全局变量的值 永恒的蓝色梦想 发表于 2020-5-25 21:50
python 规定可以访问,禁止赋值
for each_line in fi:
又出问题了
UnicodeDecodeError: 'gbk' codec can't decode byte 0x80 in position 0: illegal multibyte sequence
这个又是闹哪样啊{:5_100:} 失文 发表于 2020-5-25 22:15
for each_line in fi:
又出问题了
UnicodeDecodeError: 'gbk' codec can't decode byte 0x80 in positi ...
改成import os
import easygui as g
def search_file(path):
os.chdir(path)
file_list = os.listdir(path)
for each_file in file_list:
if os.path.isfile(each_file):
extension = os.path.splitext(each_file)
if extension == '.txt':
global count
fi = open(each_file,encoding='utf-8')
for each_line in fi:
if not each_line.isspace():
count += 1
count_list.append(count)
fi.close()\
else:
search_file(each_file)
os.chdir(os.pardir)
return count_list
def calculate(count_list):
sum1 = 0
for i in count_list:
sum1 += i
return sum1
path = g.diropenbox('请选择你的代码库', '文件浏览')
count = 0
count_list = []
if path != None:
b = search_file(path)
sum_code = calculate(b)
print('你已经写了%d行代码,还差%d行,继续加油!' % (sum_code, 100000 - sum_code)) 永恒的蓝色梦想 发表于 2020-5-25 21:50
python 规定可以访问,禁止赋值
fi = open(each_file, encoding = 'utf-8', errors = 'ignore')
百度改成这个,好像行了 失文 发表于 2020-5-25 22:20
百度改成这个,好像行了
那就选个最佳吧~ Twilight6 发表于 2020-5-25 21:53
就是 你不改变原值就不会发生屏蔽效果 你改变了原值 就会发生屏蔽效果
明白了,谢谢!我再去看下视频
页:
[1]