Python 从txt文件中 读取数据存入 列表 并进行搜索查询
发布网友
发布时间:2022-04-29 12:11
我来回答
共2个回答
热心网友
时间:2022-04-18 17:27
# coding: UTF-8
blist = []
split_char = ' '
with open('b.txt', 'r') as bf:
blist = [b.strip().split(split_char) for b in bf]
word = '我'
print repr(word)
for bl in blist:
print bl
if word in bl:
print 'blist[%d][%d]' % (blist.index(bl),bl.index(word))
来自:求助得到的回答
热心网友
时间:2022-04-18 18:45
txt文件read出来 按照“\n”分成几行,再把每一行按照空格分开,存到一个列表里就行了。
搜索 就用index吧。追问能稍微 帮忙敲几行代码嘛?