W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
Python center() 返回一個原字符串居中,并使用空格填充至長度 width 的新字符串。默認(rèn)填充字符為空格。
center()方法語法:
str.center(width[, fillchar])
該方法返回一個原字符串居中,并使用空格填充至長度 width 的新字符串。
以下實(shí)例展示了center()方法的實(shí)例:
#!/usr/bin/python
str = "this is string example....wow!!!";
print "str.center(40, 'a') : ", str.center(40, 'a')
以上實(shí)例輸出結(jié)果如下:
str.center(40, 'a') : aaaathis is string example....wow!!!aaaa
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: