Python's “in” set operator

前端 未结 5 1139
刺人心
刺人心 2020-12-25 09:24

I\'m a little confused about the python in operator for sets.

If I have a set s and some instance b, is it true that b i

5条回答
  •  执念已碎
    2020-12-25 09:44

    Strings, though they are not set types, have a valuable in property during validation in scripts:

    yn = input("Are you sure you want to do this? ")
    if yn in "yes":
        #accepts 'y' OR 'e' OR 's' OR 'ye' OR 'es' OR 'yes'
        return True
    return False
    

    I hope this helps you better understand the use of in with this example.

提交回复
热议问题