1from bs4 import BeautifulSoup
2import requests
3
4URL = 'https://google.com/'
5content = requests.get(URL)
6soup = BeautifulSoup(content.text, 'html.parser')
7
8print(soup.text)
9
10#This code will print the website content of google
11#You can change the website by editing the URL inside the variable named 'URL'