python
import psutil
cpu_percent = psutil.cpu_percent()
mem_info = psutil.virtual_memory()
mem_percent = mem_info.percent
python
import requests
response = requests.get("https://www.example.com")
content = response.text
print(content)
python
import pandas as pd
data_frame = pd.read_csv("data.csv")
print(data_frame.head())
python
import matplotlib.pyplot as plt
x = [1, 2, 3, 4, 5]
y = [2, 4, 6, 8, 10]
plt.plot(x, y)
plt.show()