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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T07:55:48+00:00 2026-06-13T07:55:48+00:00

This may be simply idiotic, but for me it’s a bit confusing: In [697]:

  • 0

This may be simply idiotic, but for me it’s a bit confusing:

In [697]: l=[]

In [698]: bool(l)
Out[698]: False

In [699]: l == True
Out[699]: False

In [700]: l == False
Out[700]: False 

In [701]: False == False
Out[701]: True

Why does l==False return False while False == False returns True?

  • 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-13T07:55:48+00:00Added an answer on June 13, 2026 at 7:55 am

    You are checking it against the literal value of the boolean False. The same as 'A' == False will not be true.

    If you cast it, you’ll see the difference:

    >>> l = []
    >>> l is True
    False
    >>> l is False
    False
    >>> l == True
    False
    >>> l == False
    False
    >>> bool(l) == False
    True
    

    The reason False == False is true is because you are comparing the same objects. It is the same as 2 == 2 or 'A' == 'A'.

    The difficulty comes when you see things like if l: and this check never passes. That is because you are checking against the truth value of the item. By convention, all these items will fail a boolean check – that is, their boolean value will be False:

    • None
    • False (obviously)
    • Any empty sequence: '', [], ()
    • Any “zero” value: 0, 0.0, etc.
    • Any empty collection: {} (an empty dict)
    • Anything whose len() returns a 0

    These are called “falsey” values. Everything else is “true”. Which can lead to some strange things like:

    >>> def foo():
    ...   pass
    ...
    >>> bool(foo)
    True
    

    It is also good to note here that methods that don’t return an explicit value, always have None as their return type, which leads to this:

    >>> def bar():
    ...   x = 1+1
    ...
    >>> bool(bar)
    True
    >>> bool(bar())
    False
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

this may be stupidly simple but I'm trying to figure out a way to
This may be a bit obscure, but I'm developing a viewer app that chunks
Okay this may sound a bit weird but it is what I have to
This may be the simplest question ever, but try as I might I simply
This may be a painfully simply question for which I will be mocked but
This may seem odd but I'm simply trying to put a url together. The
I'm new to CodeIgniter, so this may sound a bit stupid. But here's what
This may be a simple question but I can;t find the answer anywhere. Here
This may be a simple fix and maybe I'm missing something obvious, but when
This may well be simple, but I'm new to Drupal. The organization I work

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.