Python Forum
I am new to python and Could someone please explain how this below code is working?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
I am new to python and Could someone please explain how this below code is working?
#1
a=True
try:
    assert a and not print("sucess"),"failure"
except Exception as e:
    print("e is",e)
Output is Sucess when a is True
and Output is Failure when a is False

Could someone please explain how this code is working in detail?
snippsat write Dec-19-2022, 04:25 PM:
Added code tag in your post,look at BBCode on how to use.
Reply
#2
Calling a function returns a value. Calling print() always returns None. not None is True, so not print("sucess") is True.

In Python, A and B, B is only evaluated if A is truthy. In your code, A is a, and B is print("success")

"assert X, Y" raises AssertionError(Y) if X evaluates to something that is falsey. In your code "assert a and not print("sucess")" is X and "failure" is Y.

In an try/except:
try:
    body
except exception_type as excception_info:
    exception code
If an exception is raised while the body is executed, control jumps to the except. If the raised exception matches the exception type, the exception code is executed. Information associated with the exception can be passed as an argument (exception_info)

Putting them all together:
If a is True, then then print("success") is called to get the return value of the print() function. The expression "assert a and not print("sucess")" evaluates to True, so the assertion error is not raised.

If a is False, the print() function is not called, and AssertionError("failure") is raised.

If an AssertionError("failure" is raised, the exception code prints the exception info ("failure")
Reply
#3
got the answer,

assert a and not print("sucess"),"failure"
If 'a' is True, then python executes the next expression 'not print("sucess")'.
print("success") prints "success", and then returns None. not None is True(print(not None)), so the assert passes.
If 'a' is False, then python doesn't bother about executing the second part and the assert just fails.
When an assert fails it prints the message after the comma which is "failure"
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  code isnt working. nezercat33 1 575 Mar-14-2025, 03:45 AM
Last Post: deanhystad
  Simple code not working properly tmv 2 450 Feb-28-2025, 09:27 PM
Last Post: deanhystad
  I'm new to Python - can someone help with this code as it is not working? lminc123 1 477 Feb-13-2025, 06:13 PM
Last Post: lminc123
  my code is not working erTurko 1 626 Nov-11-2024, 08:43 AM
Last Post: buran
  Can you explain the strings in Python ebn852_pan 3 1,112 May-19-2024, 08:36 AM
Last Post: Pedroski55
  New to Python - Not sure why this code isn't working - Any help appreciated TheGreatNinx 4 2,247 Jul-22-2023, 10:21 PM
Last Post: Pedroski55
  code not working when executed from flask app ThomasDC 1 2,980 Jul-18-2023, 07:16 AM
Last Post: ThomasDC
  New to python/coding Need help on Understanding why this code isn't working. Thanks! mat3372 8 3,416 May-09-2023, 08:47 AM
Last Post: buran
  [split] Explain the python code in this definition Led_Zeppelin 1 1,280 Jan-13-2023, 10:20 PM
Last Post: deanhystad
  Explain the python code in this definition Led_Zeppelin 1 1,651 Oct-27-2022, 04:04 AM
Last Post: deanhystad

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020