Imports Matplotlib Está correto?
x = list(range(1, 9))
y = notas_matematicas
plt.plot(x, y, marker = "o")
plt.title("notas de matemaatica")
plt.xlabel("provas")
plt.ylabel("notas")
plt.show()
Imports Matplotlib Está correto?
x = list(range(1, 9))
y = notas_matematicas
plt.plot(x, y, marker = "o")
plt.title("notas de matemaatica")
plt.xlabel("provas")
plt.ylabel("notas")
plt.show()
Pra importar matplotlib fica:
import matplotlib.pyplot as plt