Center
#
Centerhttps://www.w3schools.com/python/ref_string_center.asp
The center() method will center align the string, using a specified character (space is default) as the fill character.
Syntax: Center(str string, width int[, fillChar rune]) string
- width - Required. The length of the returned string
- fillChar - [Optional], The character to fill the missing space on each side. Default is " " (space)