当前位置:编程学习 > python >>

将关键词列表文件转成python的list

file_src = open('src.txt')
file_dst = open('dst.txt','w+')
file_dst.write("[")
for line in file_src:
     file_dst.write("'"+line[0:len(line)-1]+"',")
file_dst.write("]")
file_src.close()
file_dst.close()
作者:jingshishengxu
补充:Web开发 , Python ,
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,