Computer Science, asked by vivekhinduja786, 4 months ago

Name the term in Python that allows us to use a condition within another condition

Answers

Answered by mannattjaiswal6
1

Answer:

Conditional statements give us this ability. The simplest form is the if statement, which has the genaral form: if BOOLEAN EXPRESSION: STATEMENTS. A few important things to note about if statements: The colon ( : ) is significant and required.

Answered by palaksadani123
1

Conditional Statement in Python perform different computations or actions depending on whether a specific Boolean constraint evaluates to true or false. Conditional statements are handled by IF statements in Python.

Similar questions