import string_checker, yes_no # Displays instructions def instruction(): print(''' ๐Ÿ“ƒ๐Ÿ“ƒ๐Ÿ“ƒInstructions๐Ÿ“ƒ๐Ÿ“ƒ๐Ÿ“ƒ Enter your delivery address if you pick delivery. You can type shortcuts for everything or type the whole word. Examples: d = delivery p = pepperoni hc = ham & cheese bc = buffalo chicken gp = garlic prawn ms = mario special Shortcuts for sides: gb = garlic bread cs = coleslaw fs = french fries cc = choc chip cookies Type x in the ordering section to finish your order and continue to the cart. Type back in the cart to continue ordering. A maximum of 5 pizzas can be ordered. Each pizza will add two minutes to the total delivery time + 10 minutes. Each pizza will add two minutes to the pickup time. A delivery fee of $3 applies for delivery orders. ''') if __name__ == "__main__": if string_checker("Do you want to read the instructions? ", yes_no) == "yes": instruction()