Ask your own question, for FREE!
Computer Science 13 Online
kekeman:

Select the missing comparison operator for the following code: def compare(): numbers = [12, 10, 54, 243, 2, 602, 54] x = int(input("Enter a number to be searched for: ")) found = false for i in range(len(numbers)): if numbers[i] /* Missing operator */ x: found = true print(str(x) + " was found at position " + str(i)) break if not found: print(str(x) + " was not found.") < <= != ==

SmokeyBrown:

In this case, you want the program to say that the number was found if the number in the list is equal to the number being searched for. Which of the operators would check that a number *is equal* to another number?

kekeman:

The == operator

SmokeyBrown:

Yes, that's right!

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!