Branch

A branch. is a sequence of statements triggered by a conditional.

Python Example

# Process execution branches.
def option(selection):
    if selection == 'primary':
        print('primary')
    elif selection == 'secondary':
        print('secondary')
    else:
        print('other')
        
# Use the branching.
option('primary')