1

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.

user1700890
  • 6,206
  • 15
  • 77
  • 160

1 Answers1

2

and in Python is the same as && in other languages

Ben
  • 488
  • 6
  • 14