Untitled
unknown
plain_text
a year ago
293 B
4
Indexable
import matplotlib.pyplot as plt x=["E hene","E marte","E merkure","E enjte","E premte","E shtune","E diele"] y=[30.4,25.2,17.8,31.5,25.6,30.4,25.9] plt.scatter(x,y,color='blue',marker='o') plt.xlabel("Ditet e javes") plt.ylabel("Temperaturat ne grade Celsius") plt.grid(True) plt.show()
Editor is loading...
Leave a Comment