1 # strは、["str", "str2"]に含まれているのでtrue 2 "str" in ["str", "str2"] 3 4 # strは、["str1", "str2"]に含まれていないのでfalse 5 "str" in ["str1", "str2"]