Python indent - how do you do it?


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Python indent - how do you do it?
# 1  
Old 08-10-2013
Python indent - how do you do it?

A space, a tab? Just currious what, why, you indent in x way?

Fwiw, I use vi, so kind'a currious how you vi folks approach indentation when writing code (eg python).

Disclosure, I'm just learning python and have never seen a language use indentation so formally (I like it tooSmilie ). I just don't want to get too far down the road programming in say python adding x spaces to indent when most do y spaces or use tabs...

Just looking for some intel from ya. Happy weekend all!
# 2  
Old 08-10-2013
I use spaces and vi's autoindent feature.
Code:
: set ai

# 3  
Old 08-10-2013
Disclaimer: I'm somewhat a novice to python. I prefer spaces, but my understanding is that tabs are better. If you use spaces, and some else wants to read your code, and they don't use spaces, there's no clean way to reformat the code to their preferences. But, if you use tabs, then, it's just a matter of changing how tabs are displayed which can be customized without affecting the source code at all.
# 4  
Old 08-10-2013
I usually use tabs, quick and convenient...
# 5  
Old 08-10-2013
I use tabs too. I feel that the code appearance is elegant if tabs are used for indentation.
# 6  
Old 08-10-2013
Thanks folks for the chat re your practice! I'm glad to hear there isn't some unwritten rule that it's X way or the highway!

Think since I'm a big sas and sql guy, I'll stick with tab. Glad I won't be some python-outlaw or whatnot using tabSmilie
# 7  
Old 08-11-2013
In case it's of any interest to you: PEP 8 -- Style Guide for Python Code

Regards,
Alister
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Parse excel with indent

hello everyone how to parse excel file with indents ? i was trying perl and there is Spreadsheet::ParseExcel::Format but i have no idea how to make it work docs says $format->{Indent} but it's not working also i was trying xls2csv and xlhtml but they don't care about indents at all :( i... (1 Reply)
Discussion started by: tip78
1 Replies

2. Shell Programming and Scripting

awk to indent file outout

i have a file that contains information such as this: hostname.sky.net === 12.39.59.35 hostname.sky.net === 12.39.59.35 hostname.sky.net === 12.39.59.35 hostname-newyork.sky.net ==== 13.45.35.24 hostname-newyork.sky.net ==== 13.45.35.24... (3 Replies)
Discussion started by: SkySmart
3 Replies

3. Shell Programming and Scripting

How to indent the file lines using vi?

Every now and then I have to indent the lines in my script to 4 space characters. I generally do it line by line. Is there an automated command in vi using which I can indent some set of lines to desired number of space characters in one go. (2 Replies)
Discussion started by: paragkalra
2 Replies

4. Shell Programming and Scripting

Print lines where there's no indent on the first field

Hi All, I need a code to print those lines where there's NO indents on the 1st field Example shown below. I tried to use the below codes but i am not able to see the expected result. Can any expert give any advise ? My Code cat filename| awk '$1 ~ /^+$/ {print $0}' Input 1199 ... (7 Replies)
Discussion started by: Raynon
7 Replies

5. UNIX for Dummies Questions & Answers

vi auto indent whole file at once

Hi, I'm working on a big project and all the CPP and header files are in mess with respect to indentation. I would like to indent whole file(s) at once (like ctrl-shift-f in eclipse). Is there anybody who knows how to do that in vi/vim? thanks (2 Replies)
Discussion started by: SaTYR
2 Replies

6. UNIX for Dummies Questions & Answers

[non-important] Indent here-docs?

I recently coded a typical ftp script looking like ftp -n $hostname << user $user $pass <commands..> quit ! I know the code fails when you try to indent it like: ftp $hostname << user $user $pass <commands..> quit ! Just for the sake of neat code, is there a... (4 Replies)
Discussion started by: yongho
4 Replies

7. UNIX for Dummies Questions & Answers

vim indent

I know this is not a unix question but I also know that many of you use vim editor every day. So hoping to get some help, here it goes: How can I change my vim config file so that the indentations while c programming take 4 spaces instead of 8? I want the change to apply any further uses of... (4 Replies)
Discussion started by: Virtuosso
4 Replies

8. UNIX for Dummies Questions & Answers

Auto indent in vi

Hi, I use vi for my text editing. Is there a way to use smart indentation? that is when adding a '{' or '}' that the editor will jump and advance, or any other thing like that? thanks (1 Reply)
Discussion started by: sierra_aar
1 Replies
Login or Register to Ask a Question