Python美味食譜 1 4 字串對齊

2021-09-08 21:29:05 字數 709 閱讀 5930

目的

實現字串的左對齊,右對齊,居中對齊。

方法

字串內建了以下方法:其中width是指包含字串s在內的寬度,fillchar預設是空格,也可以指定填充字元

string.

ljust

(s,

width[,

fillchar]

)string.

rjust

(s,

width[,

fillchar]

)string.

center

(s,

width[,

fillchar]

)

in [

6]: a='

hello!

'in [

7]: 

print

a.ljust(10,

'+')

hello!

++++

in [

8]: 

print

a.rjust(10,

'+')

++++

hello!

in [

9]: 

print

a.center(10,

'+')

++hello!++

python學習 14 字串

2 查詢和替換 7個方法 3 大小寫轉換 5個方法 4 文字對齊 3個方法 5 去除空白字元 3 6 拆分和連線 5 字串的切片 可以使用索引獲取乙個字串中指定位置的字元,索引計數從0開始 也可以使用for迴圈遍歷字串中每乙個字元 大多數程式語言都是用 來定義字串 string hello pyth...

1 4 字串 字典操作

1.4.2 字串常見的操作 1.4.3 字典的建立及索引 1.4.4 字典的常用操作 刪除1.4.5 字典推導式 batch 單引號 string my name 雙引號 string my name 三引號,可以跨行 string my name 結果 my name my name myname...

Python天天美味 3 字元轉換

python提供了ord和chr兩個內建的函式,用於字元與ascii碼之間的轉換。如 print ord a 97 print chr 97 a下面我們可以開始來設計我們的大小寫轉換的程式了 usr bin env python coding utf 8 defucasechar ch iford ...