My issue
My code
# Find the anomaly month in the list below
days = [30, 31, 30, 30, 31, 30, 20, 30, 31, 30, 31, 30]
for i in days:
if i ==20:
break
print(i)
Learning course: Learn Python
Problem Link: CodeChef: Practical coding for everyone