Computer Science, asked by chandeepsingh0004, 4 months ago

what are types of branching in python

Answers

Answered by sakshi72748
1

Answer:

please follow me and mark as brainlist

Explanation:

Branching is where a program decides whether to do something or not.

...

Here are three logical operators available to you:

and Both operands are true: (a and b) is True.

or Any operator is true: (a or b) is True.

not Checks if something is false: not (a and b) is True if both a and b are False.

10 फ़र॰ 2017

Answered by Anonymous
9

Answer :-

Branching is where a program decides whether to do something or not

Here are three logical operators available to you

  • and Both operands are true:

  • (a and b) is True

  • or Any operator is true: (a or b) is True.

  • not Checks if something is false: not (a and b) is True if both a and b are False.
Similar questions