Center-aligning text on console in Python(Python中控制台上的居中对齐文本)
问题描述
我正在创建一个简单的基于控制台的 Python(2.4 版)脚本,它将在 Bash shell 上运行.它是一个简单的基于菜单的脚本,向用户显示一组选项,并根据用户输入执行特定任务.
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.
当脚本启动时,我希望它清除屏幕并在屏幕中央显示菜单.我可以从 stty size
获得控制台宽度.如何使文本居中对齐?
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?
推荐答案
你可以使用 str.center
s = "hello world"
s.center(40)
>>> ' hello world '
这篇关于Python中控制台上的居中对齐文本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Python中控制台上的居中对齐文本


- 沿轴计算直方图 2022-01-01
- pytorch 中的自适应池是如何工作的? 2022-07-12
- 如何在 Python 的元组列表中对每个元组中的第一个值求和? 2022-01-01
- padding='same' 转换为 PyTorch padding=# 2022-01-01
- 如何将一个类的函数分成多个文件? 2022-01-01
- python check_output 失败,退出状态为 1,但 Popen 适用于相同的命令 2022-01-01
- 分析异常:路径不存在:dbfs:/databricks/python/lib/python3.7/site-packages/sampleFolder/data; 2022-01-01
- python-m http.server 443--使用SSL? 2022-01-01
- 如何在 python3 中将 OrderedDict 转换为常规字典 2022-01-01
- 使用Heroku上托管的Selenium登录Instagram时,找不到元素';用户名'; 2022-01-01