Please see this code it's troubling me - this code isn't working. Whenever I type any month it implements the first if line only
print("Please put the month in the suggested manner -- " "EX - January or january and so on...") month = input("Enter The Month in alphabetical format : ") if month == 'January' or 'january': print('There are 31 Days in',month) elif month == 'February' or 'february': print('There are 28 days in a simple year & 29 days in a leap year in ',month) elif month == 'March' or 'march': print('There are 31 Days in ',month) elif month == 'April' or 'april': print('There are 30 Days in ', month) elif month == 'May' or 'may': print('There are 31 Days in ',month) elif month == 'June' or 'june': print('There are 30 Days in ',month) elif month == 'July' or 'july': print('There are 31 Days in ',month) elif month == 'August' or 'august': print('There are 31 Days in ',month) elif month == 'September' or 'september': print('There are 30 Days in ',month) elif month == 'October' or 'october': print('There are 31 Days in ',month)