I am trying to print this statement:
a= 'Hi %s, \n The meeting is scheduled for %s %sth \n if you have an questions please contact %s' % (cfname, meetingmonth, meetingday, cleadfname)
print a
I'm also trying to bold every variable insert (i.e. cfname, meetingmonth etc.). Basically, I have a script asking the enduser for input which writes this statement to a .doc format. Is there a simple way to bold things when writing something in python?
I've tried the bold brackets around the word and that doesn't seem to work. Any help would be great!