+ 2
In python does it possible to check multiple expression using assertion
3 Réponses
+ 2
Yes
assert {expression} and {expression}
Something like this:
assert 1 == 1 and False
+ 1
try to connect the expression with "and" operator
0
show me an example