raising an exception | Sololearn: Learn to code for FREE!
Nouvelle formation ! Tous les codeurs devraient apprendre l'IA générative !
Essayez une leçon gratuite
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?

18th Apr 2020, 7:22 AM
PRIYANKA K
PRIYANKA K - avatar
1 Réponse
+ 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..
18th Apr 2020, 9:15 AM
Jayakrishna 🇮🇳