import matplotlib.pyplot as plt
notas_matematica = [8, 7, 7, 8, 9, 3, 2, 8]
x = list(range(1, 9))
y = notas_matematica
plt.plot(x, y, marker='o')
plt.title('Notas de Matemática')
plt.xlabel('Provas')
plt.ylabel('Notas')
plt.show()
import matplotlib.pyplot as plt
notas_matematica = [8, 7, 7, 8, 9, 3, 2, 8]
x = list(range(1, 9))
y = notas_matematica
plt.plot(x, y, marker='o')
plt.title('Notas de Matemática')
plt.xlabel('Provas')
plt.ylabel('Notas')
plt.show()
Parabéns, Sintia!
Esse código funciona certinho! Siga firme nos estudos.