# 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
html_source = urllib.urlopen(url).read()
if x in html_source:
print x,'was found in the webpage'
words = html_source.split()
y = words.count(x)
print 'The word,',x,'was found',y,'times.'
if x not in html_source:
print 'Sorry, the string',x,'was not found in the website contents.'
answer = raw_input('Would you like to see the source code of that webpage? ')
if answer=="yes" or answer=="y" or answer=="sure" or answer=="okay":
print html_source
words = html_source.split()
y = words.count
elif answer=="no" or answer=="n":
exit()
else:
print 'Sorry, that command was not recognized.'
answer = raw_input('Would you like to see how many words there are in the source code? ')
if answer=="yes" or answer=="y" or answer=="sure" or answer=="okay":
print len(words)
elif answer=="n" or answer=="no":
exit()
else:
print 'Sorry, that command was not recognized.'
exit()