My issue
I think my code is correct but it is not working
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!=30 and 31:
print(i)
Learning course: Learn Python
Problem Link: CodeChef: Practical coding for everyone