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 7960139
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T04:40:53+00:00 2026-06-04T04:40:53+00:00

Assume something like this: if mylist[0] == 1 or mylist[12] == 2: # do

  • 0

Assume something like this:

if mylist[0] == 1 or mylist[12] == 2:
   # do something

But I’m not sure if mylist[12] will always not be out of range. What do to keep things simple and still check if index exists? Wouldn’t want to do

if mylist[0] == 1:
    # do something
elif mylist[12] == 2:
    # do the EXACT same thing

As you get too much identical lines of code.

  • 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-04T04:40:54+00:00Added an answer on June 4, 2026 at 4:40 am

    You could check the length of the list:

    if mylist[0] == 1 or (len(mylist) > 12 and mylist[12] == 2):
    

    This uses the short-circuting behaviour of and to ensure that mylist[12] won’t be evaluated if the list has 12 items or fewer.

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

Sidebar

Related Questions

I've got a process something like a workflow, assume it like this: Prepare Eat
Sorry If something like this has already been asked, but I can't find exactly
Say I have an entity that looks something like this simple example: MyEntity {
I want to do something like this in Python. I took out what we
Assume I have a matrix something like this : 1 1 1 0 0
I was used something like this in C# or other languages. // C#, but
I need to do something like this... Collection<T> myCollection; ///assume it is initialized and
Essentially, I'd like to be able to do something like this: //assume myFunction is
I have a simple question about .net delegates. Say I have something like this:
Is something like this possible? // We can even assume T and U are

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.