python 字符串转列表 list 出现ufeff解决方法!

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 字符串转列表 list 出现ufeff解决方法!相关的知识,希望对你有一定的参考价值。

#文件内容  lisi
lock = open("lock_info.txt", "r+",encoding="utf-8")
lock_line = lock.readline()
lock_list = lock_line.split(",")
print(lock_list)

y = lock_line.encode(‘utf-8‘).decode(‘utf-8-sig‘)
print(y)

#打印结果如下
[‘\ufefflisi‘]
lisi












以上是关于python 字符串转列表 list 出现ufeff解决方法!的主要内容,如果未能解决你的问题,请参考以下文章

python 中怎么把,list,字典dict转换为字符串

python 中字符串list/列表元素转化为数值型/数字的方法分析

Python3 字符串str和列表list转换

python列表中的字符串,怎么转化成列表?

Python列表list转字符串报错:expected str instance, int found

Python列表list转字符串报错:expected str instance, int found