Solucionado (ver solução)
Solucionado
(ver solução)
1
resposta

Erro ao usar o Type.

type(variavel) Traceback (most recent call last): File "", line 1, in TypeError: 'str' object is not callable

Ao tentar usar type(variavel), retorna esse erro. Mesmo eu já tendo criado uma variavel anteriormente com esse nome. variavel = "banana" type(variavel)

1 resposta
solução!

Baltazar,

Vc deve ter feito ou digitado algo errado!

Python 3.8.0 (tags/v3.8.0:fa919fd, Oct 14 2019, 19:37:50) [MSCv.1916 64 bit (AMD64)] on win32`

Type "help", "copyright", "credits" or "license" for more information.

>>> variavel = "banana"

>>> type(variavel)

<class 'str'>

>>>