✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
What will the following code print?
Python Code
lst = [4, 7, 12, 18, 5]
count = 0
for item in lst:
if item > 10:
count += 1
print(count)