gpt4 book ai didi

Python: 'list' 对象没有属性 'read'

转载 作者:行者123 更新时间:2023-11-28 17:53:53 24 4
gpt4 key购买 nike

我有一个列表,其中包含一个包含非 ascii 字符的字符串。我的目标是摆脱非 ascii 字符并将列表转换为字符串。

每次我尝试去除非 ascii 字符时,我都会收到此错误:'list' object has no attribute 'read'

我已经尝试了大部分 these而且每次我仍然会收到此错误。我不确定我做错了什么,任何帮助将不胜感激。

最佳答案

Py3:

thelist[0].encode('ascii','ignore').decode()

这适用于 python 2.x:

import string
filter(lambda c:c in string.printable, thelist[0])

关于Python: 'list' 对象没有属性 'read',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4309865/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com