Is there Python equivalent of &&
operator in C#?
Quick clarification, in C# if x && y
if x
is not true, then y
is not even going to evaluated.
Asked
Active
Viewed 561 times
1

user1700890
- 7,144
- 18
- 87
- 183
-
1See also [here](http://stackoverflow.com/questions/2580136/does-python-support-short-circuiting): Python's `and` supports short-circuiting – David Robinson Dec 07 '15 at 00:24
-
@John3136, thank you corrected! – user1700890 Dec 07 '15 at 00:27