I am creating a simple console-based Python (version 2.4) script that will be run on a Bash shell. It is a simple menu-based script that displays a set of options to the user and will do specific tasks depending on the user input.
When the script starts, I want it to clear the screen and display the menu in the center of the screen. I can get the console width from stty size
. How do I go about center-aligning the text?
You can use
str.center
If you are using python version
3.6
(as I love to use it instead of2.7
) you can use thecaret
character in theformat
function:If you want to fill the gap you use: