[python]list型か辞書型か見分ける 2022.06.16if type(result) == dict: print(‘This is DICT type’)elif type(result) == list: print(‘This is LIST type’)
コメント