0
raising an exception
What is the highest number printed by this code? print(0) assert "h" != "w" print (1) assert False print(2) assert True print(3) How does this works?
1 Respuesta
+ 1
1
The condition in assert expression is tested, and if the result comes up false, an exception is raised.
The raise in expression is caused stop execution..