py_list = list(range(1000000))
Ao executar este código retornao erro: TypeError Traceback (most recent call last)
in () ----> 1 py_list = list(range(1000000))
TypeError: 'list' object is not callable
py_list = list(range(1000000))
Ao executar este código retornao erro: TypeError Traceback (most recent call last)
in () ----> 1 py_list = list(range(1000000))
TypeError: 'list' object is not callable
Olá Abel,
Esse código está correto, então acredito que você substituiu o valor de list
em algum momento, com algo tipo list = ...
, se tiver qualquer código iniciado assim você tem que remover.
Normalmente apenas reiniciando o Runtime já resolve, se estiver utilizando o colab você pode reiniciar no menu em Runtime -> Restart and run all
Espero ter ajudado, se o problema continuar é só falar e compartilhar também o seu código completo.