# Python CodeRecipe|expandtabs()の使い方

Home String Methods

# expandtabs()の例1

txt = "H\te\tl\tl\to"
x =  txt.expandtabs(2)
print(x)

# expandtabs()の定義及び使い方

expandtabsize()関数は、タブサイズを設定します。 を指定した数の空白に置き換えます。

# expandtabs()の構文

string.exandtabs(tabsize)

# expandtabs()の引数

tabsize:オプション. A number specifying the tabsize. Default tabsize is 8

# expandtabs()の例2

txt = "H\te\tl\tl\to"
print(txt)
print(txt.expandtabs())
print(txt.expandtabs(2))
print(txt.expandtabs(4))
print(txt.expandtabs(10))

Home String Methods