Estou tentando seguir os passos da aula, mas quando faço esses passos da erro:
from random import randrange
notas_mat = []
for notas in range(8):
notas_mat.append(randrange(0,11))
notas_mat
O erro que retorna é esse:
TypeError Traceback (most recent call last)
<ipython-input-128-60ff44d4bb17> in <module>
3 notas_mat = []
4
----> 5 for notas in range(1):
6 notas_mat.append(randrange(0,11))
7
TypeError: 'range' object is not callable