We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
def count_less_than(numbers, threshold): count = 0 for num in numbers: if num < threshold: count += 1 return count