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
  • 7,144
  • 18
  • 87
  • 183

1 Answers1

2

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

Benjewman
  • 498
  • 4
  • 14