which statement allows more than one condition in an if statement
Answers
Answered by
4
Answer:
Multiple True conditions in an if statement: the and operator. When an if statement requires several True conditions at the same time, we join those different conditions together with the and operator. Such a combined condition becomes False as soon as one condition tests False . Let's look at some examples.
Similar questions