使用python在文本文件中获取特定单词

时间:2012-06-28 18:13:26

标签: python python-2.7

我有一个文本文件,其中包含“A 0001 1212 00 @@ word”这种格式,我想在打印时打印,然后只有0001 1212部分必须显示,00也必须动态显示

1 个答案:

答案 0 :(得分:0)

你有什么尝试?我并没有真正关注你的格式。

f=open(filepath, 'r')
hold = f.read()
#hold now = 'A 0001 1212 00 @@ word'
holdout = hold.replace( '@@ word','')
#holdout now = 'A 0001 1212 00 '
#the replace call uses this format 
#string.replace('what it is looking for', 'what it is going to be')
这是你想要的吗?这个文件中只有一行吗?