Python
# Example of web scraping with Python
import requests
from bs4 import BeautifulSoup

url = "https://example.com"
response = requests.get(url)

if response.status_code == 200:
    soup = BeautifulSoup(response.content, "html.parser")
    title = soup.title.text
    print("Title of the webpage:", title)
else:
    print("Failed to fetch the webpage.")