Computer Science, asked by AditiSolunke, 1 month ago

which statement in python provides a way to check for multiple conditions?​

Answers

Answered by rajveertalekar84
0

Explanation:

To evaluate complex scenarios we combine several conditions in the same if statement. Python has two logical operators for that. The and operator returns True when the condition on its left and the one on its right are both True . If one or both are False , then their combination is False too.

Similar questions