Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6233885
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T10:22:57+00:00 2026-05-24T10:22:57+00:00

So I just learned about List Comprehensions in python. some of these are getting

  • 0

So I just learned about “List Comprehensions” in python. some of these are getting too long for a single line (PEP8) and I’m trying to figure out the best (most readable) way to break these out.

I’ve come up with this

questions = [
    (
        q,
        q.vote_set.filter(choice__exact='Y'),
        q.vote_set.filter(choice__exact='N'),
        request.session.get(str(q.id))
    )
    for q in questions
]

but it still complains about whitespace before the ], the specific pep8 error is E202

this is in an indented block.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T10:22:58+00:00Added an answer on May 24, 2026 at 10:22 am

    I would probably do it like this:

    questions = [(q, 
                  q.vote_set.filter(choice__exact='Y'), 
                  q.vote_set.filter(choice__exact='N'), 
                  request.session.get(str(q.id)))
                      for q in questions]
    

    Keep in mind that PEP8 is intended to be used along with your best judgement; they aren’t intended to be followed absolutely in all circumstances. They also aren’t structured to always make sense when multiple rules conflict.

    It’s OK to intentionally break the rules once in a while; checkers like that are just intended to make sure you don’t break them accidentally.

    Edit: Moving my comment into my answer.

    Your code looks a little bit too much like a Lisp-like parenthesis language or a C-like curly-braces language because of you putting brackets and parenthesis on separate lines.

    In Python, you just use indentation to show what you would normally show with a bracket / parenthesis / brace on a separate line in another language. If you take your code and make that change, it’s identical to my version.

    Really though, don’t worry too much about the PEP checker. If you really like the extra whitespace you get from putting the parenthesis and brackets on separate lines, then do it. It doesn’t make it “bad code” nor does it decrease the readability.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I just learned about list comprehension, which is a great fast way to get
I just learned about jquery's .makeArray and I am trying to use JSON.stringify to
I just learned about how the Java Collections Framework implements data structures in linked
I just learned about ngrep , a cool program that lets you easily sniff
I just learned about how to include FxCop on a build. But it's slow
I've got an application that just shipped. Since I wrote it, I've learned about
I've just started playing around with Scala, and I just learned about how methods
I just learned about the existence of the PRG pattern, and I'm wondering if
I just learned about arrays but can't conceptualize arrays with more than three dimensions.
I just learned about the Template Method pattern in this answer to a question

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.