Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am wondering why this is correct:

for heading in soup.find_all("td", class_="paraheading"):
    key = " ".join(heading.text.split()).rstrip(":")
    if key in columns:
        print key
        next_td = heading.find_next_sibling("td", class_="bodytext")
        value = " ".join(next_td.text.split())
        print value
    if key == "Industry Categories":
        print key
        ic_next_td = heading.find_next_sibling("td", class_="bodytext")
        for value in ic_next_td.strings:
                print value

and this is not:

for heading in soup.find_all("td", class_="paraheading"):
    key = " ".join(heading.text.split()).rstrip(":")
    if key in columns:
        print key
        next_td = heading.find_next_sibling("td", class_="bodytext")
        value = " ".join(next_td.text.split())
        print value
    if key == "Industry Categories":
        print key
        ic_next_td = heading.find_next_sibling("td", class_="bodytext")
        for value in ic_next_td.strings:
            print value

note seemingly double indentation of print value in first code block.

Wouldn't the next level of indentation down from for value in ic_next_td.strings: be one additional indentation level from this line?

Thanks

share|improve this question
4  
are you mixing tabs and spaces by any chance? – SilentGhost Nov 19 '12 at 12:19

2 Answers

up vote 10 down vote accepted

You are mixing tabs and spaces. Don't do this.

Run python -tt yourscript.py to detect any inconsistencies, but most of all, use spaces only throughout.

Configure your editor to use spaces for indentation, and replace all existing tabs with spaces. Most code editors have a function for that.

share|improve this answer
there's nothing inherently wrong w/ tabs, a third of all python project prefers tabs over spaces – SilentGhost Nov 19 '12 at 12:21
3  
@SilentGhost: none of the projects that I have worked with use tabs. 'a third' is rather a subjective statement, for me it's 0%. :-) – Martijn Pieters Nov 19 '12 at 12:22
1  
@SilentGhost interesting - could you quote a source? – Jon Clements Nov 19 '12 at 12:22
@SilentGhost PEP 8 says "For new projects, spaces-only are strongly recommended over tabs. Most editors have features that make this easy to do." – glglgl Nov 19 '12 at 12:22
@SilentGhost The PEP8 strongly recommends using spaces instead of tabs. – Bakuriu Nov 19 '12 at 12:23
show 8 more comments

Turn on showing Tab and Space character in your editor- there could be an error

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.