1
resposta

Gerando lista randômica e PLOTANDO gráfico

IMPORTANDO E GERANDO LISTA ALEATÓRIA

from random import randrange,seed
lista_notas_matematica=[]
for notas in range(8):
  lista_notas_matematica.append(randrange(0,11))

PLOTANDO GRÁFICO

import matplotlib.pyplot as plt
 x=list(range(1,9))
y=lista_notas_matematica
plt.plot(x,y,marker='o')
plt.title('NOTAS MATEMÁTICA')
plt.xlabel('PROVAS')
plt.ylabel('NOTAS')
plt.show()
1 resposta

Show!!!

Bons estudos!!