1
resposta

[Projeto] gostaria de corrigir minha atividade sobre Imports

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()
1 resposta

Pra importar matplotlib fica:

import matplotlib.pyplot as plt