DrZhang To check whether a set like small_data is a subset of another, like big_data, we code small_data, then .issubset(), with big_data between parentheses. >>> big_data = {1,2,3,4,5} >>> small_data = {1,5} >>> small_data.issubset(big_data) True