TypeError: a bytes-like object is required, not ‘str‘

问题描述

源代码:

def create_results_file(self):
  self.prog_file = os.path.join(self.mydir, 'training_progress.csv')
  data_file = open(self.prog_file, 'wb')
  data_file.write('epoch,mean_score,mean_q_val\n')
  data_file.close()

  self.term_prob_file = os.path.join(self.mydir, 'term_prob.csv')
  data_file = open(self.term_prob_file, 'wb')
  data_file.write('epoch,termination_prob\n')
  data_file.close()

错误:

TypeError: a bytes-like object is required, not 'str'

解决方案 

参考了https://blog.csdn.net/qq_40723932/article/details/127288023中提到的解决方法:

1. str转bytes

第一种:在str类型前加b,即b"str"
第二种:在str后加.encode("utf-8"),即str.encode("utf-8"),编码方式默认是utf-8,里面的"utf- 8"可以省略,下同。


2. bytes转str

只有一种方法:在bytes后加.decode("utf-8"),即bytes.encode("utf-8")

将代码改为:

def create_results_file(self):
  self.prog_file = os.path.join(self.mydir, 'training_progress.csv')
  data_file = open(self.prog_file, 'wb')
  data_file.write(b'epoch,mean_score,mean_q_val\n')
  data_file.close()

  self.term_prob_file = os.path.join(self.mydir, 'term_prob.csv')
  data_file = open(self.term_prob_file, 'wb')
  data_file.write(b'epoch,termination_prob\n')
  data_file.close()

 问题解决。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值