Ai
1 Star 0 Fork 0

leetone/my_python_practice

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
your_sentence.py 612 Bytes
一键复制 编辑 原始数据 按行查看 历史
leetone 提交于 2018-04-24 12:09 +08:00 . 画图
#!/usr/bin/env python
#__description__"
#__time__: 2018/4/19 14:33
#__author__: leetone123
#__file__: your_sentence.py
sentence = input("Give yout Sentence:")
screen_width = 80
text_width = len(sentence)
box_width = text_width + 6
left_margin = (screen_width - box_width) // 2
print()
print(' ' * left_margin + '+' + '-' * (box_width-2) + '+')
print(' ' * left_margin + '|' + ' ' * (box_width-2) + '|')
print(' ' * left_margin + '|' + ' ' * 2 + sentence + ' ' * 2 + '|')
print(' ' * left_margin + '|' + ' ' * (box_width-2) + '|')
print(' ' * left_margin + '+' + '-' * (box_width-2) + '+')
print()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/leetone123/my_python_practice.git
git@gitee.com:leetone123/my_python_practice.git
leetone123
my_python_practice
my_python_practice
master

搜索帮助