Python Forum
Tab character in a string prints 8 spaces
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Tab character in a string prints 8 spaces
#7
(Aug-27-2019, 01:46 PM)metulburr Wrote: If the PEP8 defines the default should be 4 spaces, why is it defaulted to 8 spaces there? I mean its testing anyways, but it does confuse new people as to why they are sometimes getting 8 spaces when they are told they should be getting 4.
It's not Python specific it's just how tabs work Tab key.
They could have changed to 4 to avoid confusion between code indentation(always use 4-space) and output of \t 8-space.
Quote:the horizontal tab size of 8 evolved because as a power of two it was easier to calculate with the limited digital electronics available

When think of of it i never use \t,it always string formatting when i need to move or get a different output.
Also \t can be tricky,it start count at 3 then pushes it up to 8 Confused
>>> print('aaa\taaaaaa\taaa')
aaa     aaaaaa  aaa
A usage i showed in a resent Thread,of course f-string as now always use.
my_string = ("go")
my_list = [1, 2, 3, 4]
for item in my_list:
    print(f'|{my_string} -->{item:4}|')
Output:
|go --> 1| |go --> 2| |go --> 3| |go --> 4|
item:30
Output:
|go --> 1| |go --> 2| |go --> 3| |go --> 4|
Can also solve first task,but not so common usage this and maybe a case when expandtabs(4) can make sense.
Never used expandtabs(4) as if need a other output with string it's always sting formatting(f-string).
>>> print(f"Line 1\n{'Line 2':>10}\n{'Line 3':>14}")
Line 1
    Line 2
        Line 3
Reply


Messages In This Thread
RE: Tab character in a string prints 8 spaces - by snippsat - Aug-27-2019, 02:38 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Split string into 160-character chunks while adding text to each part iambobbiekings 9 9,848 Jan-27-2021, 08:15 AM
Last Post: iambobbiekings
  Help with removing spaces and tabs from a string msqpython 14 4,312 Jan-21-2021, 10:48 PM
Last Post: deanhystad
  Replacing a few characters of a specified character but not all of them from a string fatherted99 7 3,447 Aug-13-2020, 09:08 AM
Last Post: fatherted99
  not find the resone it not prints yukhei 3 1,844 May-22-2020, 03:36 PM
Last Post: deanhystad
  Finding and storing all string with character A at middle position Pippi 2 2,773 Jan-20-2019, 08:23 AM
Last Post: Pippi
  Unexpected character after line continuation character joshyb123 5 10,817 Sep-05-2018, 08:08 AM
Last Post: perfringo
  unexpected character after line continuation character error newbie 10 14,954 Aug-09-2018, 06:07 PM
Last Post: nilamo

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020