All pastes #2048330 Raw Edit

Mine

public text v1 · immutable
#2048330 ·published 2011-04-19 17:07 UTC
rendered paste body
# By Brian Gross #
# Co editor Liz Henry #
# 4/19/11 #
url = raw_input('Please enter a website url: ')
x = raw_input('Please enter a search word: ')
import urllib
var_html = urllib.urlopen(url).read()
print var_html
if x in var_html:
	print x,'was found in the webpage'
# http://en.wikibooks.org/wiki/Python_Programming/Internet #