""" ------------------------------------------------- Project: Take-Away Game Standard: 91883 (AS1.7) v.1 School: Tauranga Boys' College Author: Keahnu Tai Walters Date: N/A Python: 3.5 ------------------------------------------------- """ import time #title def title(): global title Print("─╔╗───╔╗") Print("╔╝╚╗──║║") Print("╚╗╔╬══╣║╔╦══╗─╔══╦╗╔╗╔╦══╦╗─╔╗─╔══╦══╦╗╔╦══╗") Print("─║║║╔╗║╚╝╣║═╣─║╔╗║╚╝╚╝║╔╗║║─║║─║╔╗║╔╗║╚╝║║═╣") Print("─║╚╣╔╗║╔╗╣║═╣─║╔╗╠╗╔╗╔╣╔╗║╚═╝║─║╚╝║╔╗║║║║║═╣") Print("─╚═╩╝╚╩╝╚╩══╝─╚╝╚╝╚╝╚╝╚╝╚╩═╗╔╝─╚═╗╠╝╚╩╩╩╩══╝") Print("─────────────────────────╔═╝║──╔═╝║") Print("─────────────────────────╚══╝──╚══╝") # set variables def setup(): global name name = input("What is your name? ") title() setup()