Source code of a web page



import urllib.request
site='https://www.google.com/'
print("To read a source of "+site)
x = urllib.request.urlopen(site)
print(x.read())