0
what does && mean
2 ответов
+ 2
It's a logical operator which outputs true only if both the conditions are true...
+ 1
"&&" is a logical operator like in an expression "A && B" which outputs "True" if both A and B are True. Otherwise this would output "False".