import matplotlib.pyplot as plt
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()
NameError Traceback (most recent call last)
<ipython-input-1-69684c7f5efa> in <module>()
1 import matplotlib.pyplot as plt
2 x = list(range(1,9))
----> 3 y = notas_matematica
4
5 plt.plot(x,y,marker='o')
NameError: name 'notas_matematica' is not defined
Alguém consegue identificar onde está o erro?