python 读取文件第一列 空格隔开的数据
2021-06-23 21:07
阅读:592
标签:list 读取文件 int div nbsp result print pre list() python 读取文件第一列 空格隔开的数据 标签:list 读取文件 int div nbsp result print pre list() 原文地址:https://www.cnblogs.com/jiu0821/p/9671180.html
file=open(‘6230hand.log‘,‘r‘)
result=list()
for c in file.readlines():
c_array=c.split(" ")
# result.append(c_array[0])
print(c_array[0])
#print(result)
上一篇:python基础
下一篇:SpringMVC工作原理
文章来自:搜素材网的编程语言模块,转载请注明文章出处。
文章标题:python 读取文件第一列 空格隔开的数据
文章链接:http://soscw.com/index.php/essay/97886.html
文章标题:python 读取文件第一列 空格隔开的数据
文章链接:http://soscw.com/index.php/essay/97886.html
评论
亲,登录后才可以留言!