python读取TXT每行,并存到LIST中的方法
程序员文章站
2022-04-12 09:39:15
文本如图:
python:
import sys
result=[]
with open('accounts.txt','r') as f:
for...
文本如图:
python:
import sys result=[] with open('accounts.txt','r') as f: for line in f: result.append(list(line.strip('\n').split(','))) print(result)
结果:
以上这篇python读取txt每行,并存到list中的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
上一篇: jQuery Migrate 插件用法
下一篇: Android-毛笔的探索与开发