Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
>>> a = [1, 2, 3] >>> 4 not in a True >>> not 4 in a True
1.いつどちらを使用し、2.どちらがエラーを起こしやすいかを覚えておくための確実な方法はありますか?