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.

classification
Title: Business Logical Error
Type: security Stage: resolved
Components: Versions: Python 3.8
process
Status: closed Resolution: not a bug
Dependencies: Superseder:
Assigned To: Nosy List: Kshitish, steven.daprano
Priority: normal Keywords:

Created on 2020-11-28 09:06 by Kshitish, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
main.py Kshitish, 2020-11-28 09:06 More info watch the main,py file
Messages (2)
msg381987 - (view) Author: Nishant Gautam (Kshitish) * Date: 2020-11-28 09:06
Python does not understand not condition
msg381988 - (view) Author: Steven D'Aprano (steven.daprano) * (Python committer) Date: 2020-11-28 09:20
Nishant Gautam does not understand not condition.

This is your sixth incorrect bug report in a row. Please stop. This is not a help desk to correct your mistakes.

a == 10 and (b != (not(11))) and b == a

--> True and (b != False) and True
--> True and True and True
--> True
History
Date User Action Args
2022-04-11 14:59:38adminsetgithub: 86656
2020-11-28 09:20:30steven.dapranosetstatus: open -> closed

nosy: + steven.daprano
messages: + msg381988

resolution: not a bug
stage: resolved
2020-11-28 09:06:36Kshitishsettype: security
2020-11-28 09:06:17Kshitishcreate