I don't really speak Korean - I used an online translation tool
If you want the prefix you could just use some like:
Code:
real_sections = {
'[A1]' : 'A1: 종합',
# '[A2]' : 'remove the # to use',
}
If you wanted a different section title for each day of the week you could use a 7 element tuple, but maybe no pattern will emerge.
Edit:
Actually probbaly easier to change:
Code:
if section_title in self.real_sections:
section_title = section_title + ': ' + self.real_sections[section_title]