make_border(char, width) that returns a string made of char repeated width times, useful for building console-output borders/separators.char = '*', width = 10
'**********'
The * character repeated 10 times.
char = '=', width = 5
'====='
Repetition via the * operator.
Python strings support repetition with the `*` operator: `char * width`.