I would like to print ONLY the line which contains \"Server\" in the below piece of output:
Date: Sun, 16 Dec 2012 20:07:44 GMT Expires: -1 Cache-Control: pr
for single_line in websiteheaders.splitlines(): if `Server` in single_line: print single_line