Why we use conditional statements in Python?
What is the use of jump statements in Python?
Answers
Answered by
2
Answer:
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.
Jump statements in python are used to alter the flow of a loop like you want to skip a part of a loop or terminate a loop.
Similar questions