[issue44736] '\t' Escape Sequence behaving differently.

2021-07-25 Thread Steven D'Aprano
Steven D'Aprano added the comment: That's not a Python issue, that's a feature of your terminal. That's how tabs are supposed to work. By default, most terminals set tab stops every 8 columns. Printing a tab character jumps to the next tab stop. If you are using Linux or Mac, you can use th

[issue44736] '\t' Escape Sequence behaving differently.

2021-07-25 Thread BAHADIR
Change by BAHADIR : Removed file: https://bugs.python.org/file50179/IDLE.jpeg ___ Python tracker ___ ___ Python-bugs-list mailing list Unsub

[issue44736] '\t' Escape Sequence behaving differently.

2021-07-25 Thread BAHADIR
BAHADIR added the comment: >>> print("1\t1") 1 1 >>> print("12\t1") 12 1 >>> print("123\t1") 123 1 >>> print("1234\t1") 12341 >>> print("12345\t1") 12345 1 >>> print("123456\t1") 123456 1 >>> print("1234567\t1") 1234567 1 >>> print("12345678\t1") 123456781 >>> prin

[issue44736] '\t' Escape Sequence behaving differently.

2021-07-25 Thread BAHADIR
Change by BAHADIR : Added file: https://bugs.python.org/file50179/IDLE.jpeg ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubsc

[issue44736] '\t' Escape Sequence behaving differently.

2021-07-25 Thread Steven D'Aprano
Steven D'Aprano added the comment: I'm sorry, I don't understand what "different results for different values" you are talking about. Can you please copy and paste (not a screen shot) code demonstrating: - what code you ran - what result you expected - why you expected it - and what result y

[issue44736] '\t' Escape Sequence behaving differently.

2021-07-25 Thread BAHADIR
New submission from BAHADIR : While working on several examples I noticed that ASCII Horizontal Tab (TAB) gives different results for different values. When I looked at the rfc documents, I couldn't see any result about its calculation. The calculation method I noticed myself is as follows ((