My if/else/elif statement is not working in Python

There are two errors.

  • First, there are unnecessary colon(:) for the last two if statement.

  • Second, you need a parenthesis to call the function (e.g., menu())

I just fixed the last part of the code, so that you can call the functions:

if menu_choice_2 == 'kids menu':
    _menu_()

if menu_choice_2 == 'Catch of th day':
    _menu_COTD()

if menu_choice_2 == 'Both':
    _menu_BOTH()