求助这段代码的意思以及作用方式谢谢大佬们(主要是理解不了)
def readFileToDic(self):# 读取文件,写入到字典中
f = open(self.path, 'r', encoding='utf-8')
clist = f.readlines()
f.close()
index = 0
shopdic = {}
while index < len(clist):
# 将每一行的字符串进行分割,存放到新的列表中
ctlist = clist.replace('\n', "").split("|")
# 将每行的内容存放到一个对象中
good = Goods(ctlist, ctlist, int(ctlist))
# 将对向存放到集合中
shopdic = good
index = index + 1
return shopdic
def writeContentFile(self):
# 将内存当中的信息写入到文件当中
str1 = ''
for key in self.shopdic.keys():
good = self.shopdic
ele = good.id + "|" + good.name + "|" + str(good.price) + "\n"
str1 = str1 + ele
f = open(self.path, 'w', encoding='utf-8')
f.write(str1)
f.close()
这不都有注释吗,这是两个函数,逐个理解分析
wp231957 发表于 2020-12-16 07:39
这不都有注释吗,这是两个函数,逐个理解分析
好的,谢谢
页:
[1]