~玉米糊~
慢慢来,也会很快。 非宁静无以志学,学什么都一样,慢慢打基础,找规律、认真、坚持,其余的交给时间。

1. 如果让字符串居中显示,有哪些方法

center方法

format方法

 

2. 请使用center方法让字符串居中显示,两侧显示#号

print('<'+'hello'.center(30) + '>')
print('<'+'hello'.center(30, '#') + '>')

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

  

< hello >
<############hello#############>
< hello >
<############hello#############>

posted on 2022-04-19 21:09  yuminhu  阅读(48)  评论(0编辑  收藏  举报