1. ホーム
  2. python

[解決済み] typeError: isinstance() arg 2 must be type or tuple of types >>.

2022-02-12 01:11:44

質問

>>> names=['jill','jack']
>>> isinstance(names,list)
Traceback (most recent call last):
  File "<pyshell#291>", line 1, in <module>
    isinstance(names,list)
TypeError: isinstance() arg 2 must be a type or tuple of types
>>> 

何か見逃していませんか?

どのように解決するのですか?

を踏みつけてしまったんですね。 list を同名のローカル変数に代入しています。そんなことはしないでください。