The _______ operator returns True if the value on its left is less than the one on its right.
- Greater than (>)
- Greater than or equal to (>=)
- Less than (<)
- Less than or equal to (<=)
The 'Less than' operator returns True if the value on its left is less than the one on its right.
Loading...
Related Quiz
- In Python, a metaclass is a subclass of _____.
- You are given a list of words and you need to create a dictionary where keys are words and values are their respective lengths. Which Python construct will be most efficient for this?
- Which of the following symbols is used to define a tuple in Python?
- You are assigned to implement a complex object creation scenario where the object’s construction process should be separate from its representation. Which design pattern would you use?
- What does the as keyword do in the context of importing modules in Python?