python字符串的乘法使用

时间:2026-02-16 07:47:48

1、首先,我们要打开python软件,如图所示:

python字符串的乘法使用

python字符串的乘法使用

2、其次,我们要新建一个脚本来具体完成这个程序代码的存放:

python字符串的乘法使用

python字符串的乘法使用

3、我们新建的这个程序要完成的工作是:打印一个字符串长度大小的盒子,并且使字符串放置于盒子中间,重新把代码贴图如下:

sentence=raw_input('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+left_margin)+'+'

print ' '*left_margin+'|'+' '*text_width     +'|'

print ' '*left_margin+'|'+    sentence       +'|'

print ' '*left_margin+'|'+' '*text_width     +'|'

print '+ '+'-'*left_margin+'-'*(box_width+left_margin)+'+'

print

4、最后的运行效果如图(我们输入I miss you的字符串):

python字符串的乘法使用

© 2026 五度知识库
信息来自网络 所有数据仅供参考
有疑问请联系站长 site.kefu@gmail.com