欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

学习笔记(30):Python 面试100讲(基于Python3.x)-让字符串居中显示

程序员文章站 2022-07-14 23:10:07
...

立即学习:https://edu.csdn.net/course/play/26755/340143?utm_source=blogtoedu

学习笔记(30):Python 面试100讲(基于Python3.x)-让字符串居中显示

 

# 1. center 方法
# 2. format 方法

# 一共11个字符,去掉hello,5个字符,左右各3个
print('<' + 'hello'.center(30, '#') + '>')

print('<{:^30}>'.format('hello'))
print('<{:#^30}>'.format('hello'))