多條線路,我希望做的_grep -B14 MMA
蟒蛇的grep尋找一個圖案,然後前
相當於我有我打開一個URL,它吐出很多行。 我想
- 找到具有「MMA」
- 然後打印14行前
我甚至不知道從哪裏開始與該行。
import urllib
import urllib2
url = "https://longannoyingurl.com"
opts = {
'action': 'Dump+It'
}
data = urllib.urlencode(opts)
req = urllib2.Request(url, data)
response = urllib2.urlopen(req)
print response.read() # gives the full html output
什麼是多行匹配時,預期的結果? – 2011-02-04 19:52:09
你怎麼不知道從哪裏開始?你必須有從哪裏開始的IDEA。 – Falmarri 2011-02-04 19:53:45