from random import randrange,seed
import matplotlib.pyplot as plt
notas_matematicas = []
seed(8)
for notas in range(8):
notas_matematicas.append(randrange(0,11))
x = list(range(1,9))
y = notas_matematicas
plt.plot(x,y,marker = 'o')
plt.title('Grafico de las Notas Matemáticas')
plt.xlabel('Pruebas')
plt.ylabel('Notas')
plt.show()