为了账号安全,请及时绑定邮箱和手机立即绑定

在 Google Colab 中查看字符串输出时出现问题

在 Google Colab 中查看字符串输出时出现问题

繁星点点滴滴 2023-08-22 15:23:47
当我运行命令“print(abide.description)”时,我应该获得这样的输出,但我获得的输出是这样的。整个字符串显示在一行中,这使得阅读和解释变得非常困难。如何获得如上图所示的输出?我的代码片段:print(abide.description)输出:
查看完整描述

1 回答

?
qq_笑_17

TA贡献1818条经验 获得超7个赞

问题是abide.description返回字节而不是字符串。如果你希望它作为普通字符串打印,你可以使用该bytes.decode()方法将字节转换为unicode字符串。


例如:


content_bytes = b'this is a byte string\nand it will not be wrapped\nunless it is first decoded'


print(content_bytes)

# b'this is a byte string\nand it will not be wrapped\nunless it is first decoded'


print(content_bytes.decode())

# this is a byte string

# and it will not be wrapped

# unless it is first decoded


查看完整回答
反对 回复 2023-08-22
  • 1 回答
  • 0 关注
  • 1563 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信