estados = ['MG', 'ES'] + list[('RJ', 'SP')]
Traceback (most recent call last): File "<pyshell#8>", line 1, in estados = ['MG', 'ES'] + list[('RJ', 'SP')] TypeError: 'type' object is not subscriptable
estados = ['MG', 'ES'] + list[('RJ', 'SP')]
Traceback (most recent call last): File "<pyshell#8>", line 1, in estados = ['MG', 'ES'] + list[('RJ', 'SP')] TypeError: 'type' object is not subscriptable
Júlio,
Tenta da seguinte forma:
>>> estados = ['MG', 'ES'] + list(('RJ', 'SP'))
>>> estados
['MG', 'ES', 'RJ', 'SP']
>>>
OBS: Apesar de ser contraintuitivo a conversão de listas usa os parenteses desta forma: list()