How would I make the following display center and underlined in the shell (if I can)
print ("Award show",datetime.date.today().strftime("%Y"))
How would I make the following display center and underlined in the shell (if I can)
print ("Award show",datetime.date.today().strftime("%Y"))
First you would need to add this code
print ' ' + '\033[4m' + 'Text here' + '\033[0m'
first part is to add spaces,
second part is making it underline,
3rd part is text 4th part is end of the whole thing
Then to center just add spaces to the first