jump_p 发表于 2020-6-6 16:22:49

文本读取错误



用jupyter读取文本报错,怎么解决?
文本是在jupyter中新建“Text File”后,把文本复制粘贴进去的

冬雪雪冬 发表于 2020-6-6 16:24:26

试试 open('sample.txt', encoding = 'utf-8')

jump_p 发表于 2020-6-6 16:26:39

冬雪雪冬 发表于 2020-6-6 16:24
试试 open('sample.txt', encoding = 'utf-8')

真的可以,好像这个是万能语句,为啥会这样呢

qiuyouzhi 发表于 2020-6-6 16:48:33

jump_p 发表于 2020-6-6 16:26
真的可以,好像这个是万能语句,为啥会这样呢

改编码了呀
gbk不行,就换utf-8

jump_p 发表于 2020-6-6 16:52:47

qiuyouzhi 发表于 2020-6-6 16:48
改编码了呀
gbk不行,就换utf-8

open('sample.txt', encoding = 'utf-8') 那这句的意思是用utf-8的编码形式打开这个文本吗?

qiuyouzhi 发表于 2020-6-6 16:55:55

jump_p 发表于 2020-6-6 16:52
open('sample.txt', encoding = 'utf-8') 那这句的意思是用utf-8的编码形式打开这个文本吗?

是的

jump_p 发表于 2020-6-6 22:24:33

qiuyouzhi 发表于 2020-6-6 16:55
是的

谢谢
页: [1]
查看完整版本: 文本读取错误