find in set函数呢
In Python, the in operator is used to check if a value is present in a sequence such as a list, tuple, or set.
When used with a set, the in operator checks if the given value is an element of the set. If it is, the operator returns True; otherwise, it returns False.
Here is an example of how to use the in operator with a set:
my_set = {1, 2, 3, 4, 5}
print(3 in my_set) # Output: True
print(6 in my_set) # Output: False
In the above example, the first print statement checks if the value 3 is present in the my_set set. Since 3 is an element of the set, it returns True. The second print statement checks if the value 6 is present in the set, but since 6 is not an element of the set, it returns False
原文地址: https://www.cveoy.top/t/topic/hJen 著作权归作者所有。请勿转载和采集!