+ 5
What is "IN" operator
can any one tell me how to use "IN" operator
2 ответов
+ 5
'In' in Python checks if an object contains what you specified in the condition. Like an element in a list. Example:
list = [1, 2, 3]
# This will return true
if 2 in list:
return True
0
El IN te permitirá indicar 1 o N parámetros... Por lo tanto el resultado traerá todo lo que pueda encontrar con dichos parámetros