This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author blue555
Recipients blue555, eric.smith, paul.moore, steve.dower, tim.golden, zach.ware
Date 2020-12-01.12:01:30
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1606824090.55.0.295229019815.issue42518@roundup.psfhosted.org>
In-reply-to
Content
Look tell why you close this
 

In the argument:
print (5 + 2 == 7 and 10 <= 1232 != 10 ^ 100 <= 100)

10 <= 1232 != 10 ^ 100 <= 100

10 <= 1232 is true
10 ^ 100 <= 100 is false

These two argument compares by != 
So, this statement must be true. 

Overall: print (5 + 2 == 7 and 10 <= 1232 != 10 ^ 100 <= 100)

This is the argument is true but is print false.
History
Date User Action Args
2020-12-01 12:01:30blue555setrecipients: + blue555, paul.moore, eric.smith, tim.golden, zach.ware, steve.dower
2020-12-01 12:01:30blue555setmessageid: <1606824090.55.0.295229019815.issue42518@roundup.psfhosted.org>
2020-12-01 12:01:30blue555linkissue42518 messages
2020-12-01 12:01:30blue555create