1
resposta

[Projeto] MatplotLib

from random import randrange, seed
seed(11)
randrange(0,11)

notas_matematica = []

for notas in range(8):
  notas_matematica.append(randrange(0,11))
  notas_matematica
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()
1 resposta

Olá Matheus, tudo bem? Espero que sim!

Show demais Matheus, o código ficou muito bom!

Continue praticando para melhorar cada vez mais.

Bons estudos!