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. 哪个更容易出错?