Result Size:
625 x 571
demo_ref_string_expandtabs.py:
txt = "H\te\tl\tl\to" x = txt.expandtabs(2) print(x)
x
txt
=
"H\te\tl\tl\to"
x
=
txt
.
expandtabs
(
2
)
print
(
x
)
C:\Users\My Name>python demo_string_expandtabs.py
H e l l o