from datetime import date
import calendar
my_date = date.today()
today_day = calendar.day_name[my_date.weekday()]
if today_day == 'Wednesday' or 'Thursday':
place = 'A'
else:
place = 'B'
Initially, I wanna set place as 'A' when 'today' is 'Wednesday' or 'Thursday', otherwise as 'B'. But the designed code kept returning 'A' despite it is 'Saturday' today(14/10/2017). How could I fix it?