欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2023-11-01 20:37:52
file_src = open('src.txt') file_dst = open('dst.txt','w+') file_...
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