how to find that the given statement is in the list or not by using user defined list ?
Answers
Answered by
0
Answer:
Use the not in operator to check if an element is not in a list. Use the syntax element not in list to return True if element is not in list and False otherwise
Similar questions