-3
我有一個文本文件,包含此格式的「A 0001 1212 00 @@ word」,我想打印時訪問單詞然後只有0001 1212部分必須與00一起顯示也有動態顯示使用python獲取文本文件中的特定單詞
我有一個文本文件,包含此格式的「A 0001 1212 00 @@ word」,我想打印時訪問單詞然後只有0001 1212部分必須與00一起顯示也有動態顯示使用python獲取文本文件中的特定單詞
你試過了什麼?我沒有真正遵循你的格式。
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')
這是你想要的嗎?這個文件只有一行嗎?
只有文本文件包含「A 0001 1212 00 @@ word」ok當我試圖獲取「word」時,那麼0001 1212文本應該顯示在輸出文件 – testing
中您可以將數據作爲字符串導入,然後執行字符串 - 'word' 。這是你在你的輸出中尋找什麼?你可以做一個格式化和所需的後格式化例子之前? (你應該編輯你的問題)。 – deadstump
@testing查看我的編輯。這是你想要的嗎? – deadstump