Answer:
The right answer is: item==5
Step-by-step explanation:
In Python, two operators are used for equal to comparison.
From these, == is used when two data values have to be compared or actual values of two variables have to be compared while "is" is used when it has to be checked if two variables refer to same object or data.
Hence,
In this case, == will be used as two data values are being compared.
So,
The right answer is: item==5