notas_matematica = []
for notas in range(8):
notas_matematica.append(randrange(0,11))
notas_matematica
x = list(range(1,9))
y = notas_matematica
plt.plot(x,y, marker='o')
plt.xlabel('Provas')
plt.ylabel('Notas')
plt.title('Notas de matematica')
plt.show()