W1ND123 发表于 2021-10-19 14:46:00

课后作业第31讲,动手提0

题目:0. 编写一个程序,这次要求使用pickle将文件(record.txt)里的对话按照以下要求腌制成不同文件(没错,是第29讲的内容小改,考考你自己能写出来吗?):piQM2$v
小甲鱼的对话单独保存为boy_*.txt的文件(去掉“小甲鱼:”)
小客服的对话单独保存为girl_*.txt的文件(去掉“小客服:”)
文件中总共有三段对话,分别保存为boy_1.txt, girl_1.txt,boy_2.txt, girl_2.txt, boy_3.txt, gril_3.txt共6个文件(提示:文件中不同的对话间已经使用“==========”分割)

W1ND123 发表于 2021-10-19 14:46:57

这是我的代码,但是报错了,不知道哪里出错了,希望有大神可以指出
错误类型为: Traceback (most recent call last):
File "E:/py/小甲鱼课后作业/031/动手提0 自己写的.py", line 17, in <module>
    file_girl.writelines(list_girl)
TypeError: a bytes-like object is required, not 'str'
f = open('record.txt')
list_boy = []
list_girl = []
count = 1

for each_lines in f :
    if each_lines != '======':
      (name, program) = each_lines.split(':')
      if name == '小甲鱼':
            list_boy.append(program)
      if name == '小客服':
            list_girl.append(program)

      file_boy = open('boy_' + str(count) + '.txt', 'wb')
      file_girl = open('girl_' + str(count) + '.txt', 'wb')
      file_boy.writelines(list_boy)
      file_girl.writelines(list_girl)

      file_boy.close()
      file_girl.close()
      
    else :
      count += 1
      list_boy = []
      list_girl = []
      continue
   
f.close()

W1ND123 发表于 2021-10-19 14:48:30

还有另一个是用pickle模块的也出错了,希望有大佬指出
报错类型是: Traceback (most recent call last):
File "E:/py/小甲鱼课后作业/031/动手提0自己写pickle版.py", line 9, in <module>
    (name, program) = each_lines.split(':',1)
ValueError: not enough values to unpack (expected 2, got 1)



import pickle
f = open('record.txt')
list_boy = []
list_girl = []
count = 1

for each_lines in f :
    if each_lines != '======':
      (name, program) = each_lines.split(':',1)
      if name == '小甲鱼':
            list_boy.append(program)
      if name == '小客服':
            list_girl.append(program)

      file_boy = open('boy_' + str(count) + '.txt', 'wb')
      file_girl = open('girl_' + str(count) + '.txt', 'wb')
      pickle.dump(list_boy, file_boy)
      pickle.dump(list_girl, file_girl)

      file_boy.close()
      file_girl.close()


    else :
      count += 1
      list_boy = []
      list_girl = []
      continue
      
f.close()

W1ND123 发表于 2021-10-19 14:54:50

W1ND123 发表于 2021-10-19 14:48
还有另一个是用pickle模块的也出错了,希望有大佬指出
报错类型是: Traceback (most recent call last):
...

我重新检查了一下代码,pickle模块的,已经解决问题了,问题出于
if each_lines[:6] != '======':
这一句,但是我去修改了,第一种方法还是报错了55555

大马强 发表于 2021-10-19 15:25:07

问题在这
file_boy = open('boy_' + str(count) + '.txt', 'wb')
file_girl = open('girl_' + str(count) + '.txt', 'wb')
不能用"wb",因为这是要写入字节类的,换成"w"就可以了

大马强 发表于 2021-10-19 15:26:03

大马强 发表于 2021-10-19 15:25
问题在这

不能用"wb",因为这是要写入字节类的,换成"w"就可以了

如果再报错,每个打开的文件的属性再加上encoding="utf-8"

W1ND123 发表于 2021-10-21 08:58:46

大马强 发表于 2021-10-19 15:26
如果再报错,每个打开的文件的属性再加上encoding="utf-8"

还是报错,报错类型一样:
Traceback (most recent call last):
File "E:\py\小甲鱼课后作业\031\动手提0 自己写的.py", line 8, in <module>
    (name, program) = each_lines.split(':')
ValueError: too many values to unpack (expected 2)

W1ND123 发表于 2021-10-21 09:14:17

我已经解决了,其实就是8.1.6的一个内容,我去对照了一下发现了错误,各位可以去书本看。
页: [1]
查看完整版本: 课后作业第31讲,动手提0