Run »
txt = "H\te\tl\tl\to" print(txt) print(txt.expandtabs()) print(txt.expandtabs(2)) print(txt.expandtabs(4)) print(txt.expandtabs(10))
H e l l o
H e l l o
H e l l o
H e l l o
H e l l o