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

  • SEARCH
  • Home
  • 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 7798183
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T23:55:35+00:00 2026-06-01T23:55:35+00:00

e.g. D, if sum_p is not zero. D = 1/sum_p if sum_p \ else

  • 0

e.g. D, if sum_p is not zero.

D = 1/sum_p if sum_p \
    else 0

What if I want to return the value? Should I do:

return 1/sum_p if sum_p \
else 0

or just write

if...
else: return 0
  • 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-06-01T23:55:36+00:00Added an answer on June 1, 2026 at 11:55 pm

    If you want to do a single statement conditional return, use:

    return 1 / sum_p if sum_p else 0
    

    This is not an if statement. It’s a conditional expression. Think of it as

    return (this_value if this_condition_is_true else that_value)
    

    The return itself is outside the conditional.

    If the line is long enough you have to split it up, stylistically I’d recommend using an ordinary if statement and two return statements.

    In general, don’t use \ as a line terminator. PEP-8 recommends you always use parenthesis:

    The preferred way of wrapping long lines is by using Python’s implied line continuation inside parentheses, brackets and braces. Long lines can be broken over multiple lines by wrapping expressions in parentheses. These should be used in preference to using a backslash for line continuation. Make sure to indent the continued line appropriately. The preferred place to break around a binary operator is after the operator, not before it. Some examples:

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

Sidebar

Related Questions

I am not a pro on Linq but trying to understand. How to write
sorry for the title but I'm not sure how I should call it. I'm
I want to write a simple adder (for giggles) that adds up every argument
SELECT SUM(PayAmount) FROM TeacherPayment_Detail WHERE TeacherPaymentId IN (TeacherPayment.Advance_IDs) i want the sum up of
I have a list of items I want to buy. The items are offered
Please let me know why this query is not working together. They are working
I want to compute the moment of inertia of a (2D) concave polygon. I
From the Data,I have to find datewise total and GrandTotal the appropriate row should
Not sure what I'm doing wrong but I have two services one is WCF
I am facing a weird issue and not sure whether it's jquery or combination

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.