We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
def count_less_than(numbers, threshold): count = 0 for num in numbers: if num < threshold: count += 1 return count