Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
Everyone I know uses spaces instead of tabs in Python. In fact, PEP8 says uses spaces instead of tabs (https://python.org/dev/peps/...), with the community using four spaces per indentation level.
If you're talking about pressing the spacebar instead of using the tab key to insert spaces, then that deserves a wk99 tag. Otherwise, your coworker is correct. -
C0D4681467y@Null-Device
Key difference is spaces are universal white space, where as tabs can be interpreted as 4-6 spaces depending on IDE and OS.
Even Github will do some strange things at times with tabs so when you’re doin peer reviews the indentation can become hard to follow.
Safest way is to use an IDE that allows you to press TAB but will insert n+spaces, this allows “space” fans to get what they want and you keep pressing that tab key. -
C0D4681467y@Null-Device doesn’t bashing the space so many times get to you?
It drives me nutty hearing the “tap, tap, tap, tap” for a single indent. -
@mojaveazure most people just set the tabs to 4 spaces so you don't have to keep pressing the space bar
-
I’ve taken to setting my editor for 2 space tabs.. four is a bit silly. Especially when the rest of pep8 calls for 80 column lines like it’s the 80s and were all on glass terminals.
-
py2js33777yI press tab because don't want to press 4 times spaces, IDE knows me very well he puts four spaces for me automatically
Related Rants
-
l0om44100% Real. And it's not even the worst on the site.
-
Codazed11Being 100% serious, I saw a guy in my Computer Programming I class using MS Word to write code that he would c...
-
dfox8I worked with a good dev at one of my previous jobs, but one of his faults was that he was a bit scattered and...
A coworker was using spaces instead of tabs in python 🤦♀️
rant
wk99