BAHADIR <b123qweasd...@gmail.com> added the comment:

>>> print("1\t1")
1       1
>>> print("12\t1")
12      1
>>> print("123\t1")
123     1
>>> print("1234\t1")
1234    1
>>> print("12345\t1")
12345   1
>>> print("123456\t1")
123456  1
>>> print("1234567\t1")
1234567 1
>>> print("12345678\t1")
12345678        1
>>> print("1","12","123","1234","12345","123456","1234567","12345678",sep="\t")
1       12      123     1234    12345   123456  1234567 12345678
space length is always changing

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue44736>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to