【Python面試題】解釋一下Python中的成員運算符?
【答案】:
通過成員運算符‘in’和‘not in’,我們可以確認一個值是否是另一個值的成員。
>>> 'me' in 'disappointment'
True
>>> 'us' not in 'disappointment'
True
通過成員運算符‘in’和‘not in’,我們可以確認一個值是否是另一個值的成員。
>>> 'me' in 'disappointment'
True
>>> 'us' not in 'disappointment'
True