Problem
Python has a selection statement that allows a decision to be made, for code to be performed if the decision is true and for code to be performed if the decision is false.
Provide general syntax for the selection statement in Python in the space below.
Additionally, provide an example selection statement that tests is a user's age is 18 or over. If this is true, print out the message "You can enter the night club". Otherwise, print out the message "You are too young to enter the night club".