Python 3.1 快速導覽 - 字串型態的 center()

字串 (string) 型態 (type) 的 center() 方法 (method) ,回傳一個將 str 設置字串中央,長度 width 的字串, fillchar 為填充字元,預設為空格

方法描述
str.center(width[, fillchar])回傳一個將 str 設置字串中央,長度 width 的字串, fillchar 為填充字元,預設為空格


舉例示範如下
a = "Free your mind."
b = "Welcome to the desert... of the real."
c = "What is real? How do you define real? "
d = "There is no spoon."

print(a)
print(b)
print(c)
print(d)
print()
print(a.center(56, "="))
print(b.center(56, "="))
print(c.center(56, "="))
print(d.center(56, "="))

# 《程式語言教學誌》的範例程式
# http://pydoing.blogspot.com/
# 檔名:center.py
# 功能:示範 Python 程式 
# 作者:張凱慶
# 時間:西元 2010 年 12 月


執行結果如下



中英文術語對照
字串string
型態type
方法method


內建型態




沒有留言: