型のチェック

概要

Pythonの型のチェック方法

コード

    "name": "taro",
    "emails": ["test@exmaple.com"]
}

for k, v in test_data.items():
    if k == 'emails':
        if type(v) is not list:
            raise TypeError(v + ' is not List')