Testtwo

Sat 17 May 2025
import matplotlib.pyplot as plt

# Data
x = [1, 2, 3, 4, 5]
y = [2, 4, 6, 8, 10]

# Create a plot
plt.plot(x, y)

# Add labels and title
plt.xlabel('X-axis')
plt.ylabel('Y-axis')
plt.title('Simple Line Plot')

# Display the plot
plt.show()

png



Score: 0

Category: one


Three

Sat 17 May 2025
from IPython.display import Markdown, display

# Path to your PNG file
image_path = 'deer.jpg'

# Display the image inline
display(Markdown(f"![Image Description]({image_path})"))

Image Description



Score: 0

Category: one

Read More
Page 1 of 1