往往要對(duì)輸出內(nèi)容進(jìn)行對(duì)齊,看起來更清爽。(推薦學(xué)習(xí):Python視頻教程)
通過ljust(),center(),rjust()函數(shù)實(shí)現(xiàn)輸出的字符串左對(duì)齊、居中、右對(duì)齊的三種方式對(duì)齊。
使用函數(shù)默認(rèn)不帶參數(shù),則默認(rèn)以空格填充(文字與空格總字符數(shù)等于輸入的數(shù)字)
#代碼 print("|","Ursula".ljust(20),"|") #左對(duì)齊 print("|","Ursula".center(20),"|") #居中對(duì)齊 print("|","Ursula".rjust(20),"|") #右對(duì)齊 #運(yùn)行結(jié)果 | Ursula | | Ursula | | Ursula |
通過format()函數(shù)格式化實(shí)現(xiàn)左對(duì)齊、居中、右對(duì)齊
#代碼 print("|",format("Ursula","*>20"),"|") #左對(duì)齊 print("|",format("Ursula","*^20"),"|") #居中對(duì)齊 print("|",format("Ursula","*<20"),"|") #右對(duì)齊 #運(yùn)行結(jié)果 | **************Ursula | | *******Ursula******* | | Ursula************** |
更多Python相關(guān)技術(shù)文章,請(qǐng)?jiān)L問Python教程欄目進(jìn)行學(xué)習(xí)!
聲明:本網(wǎng)頁內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com