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

字串 (string) 型態 (type) 的 expandtabs() 方法 (method) ,將 tab 符號以 tabsize 的空格數替換

方法描述
str.expandtabs([tabsize])將 tab 符號以 tabsize 的空格數替換


舉例示範如下
#a = "Free your mind."
a = "a\t\t\t\ta"
b = "a\t\t\t\ta"
c = "a\t\t\t\ta"
d = "a\t\t\t\ta"

print(a)
print(a.expandtabs())
print()

print(b)
print(b.expandtabs(0))
print()

print(c)
print(c.expandtabs(1))
print()

print(d)
print(d.expandtabs(4))
print()

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


執行結果如下



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


內建型態




沒有留言: