# You'll want to import a module that will make the rest of your functions
# easier to write!


def getAllTAs():
    # Create a list of all the section of 110 (letters A through P, X, and Y)

    # Use the OneTen module, make sure to use the name you imported it as, to
    # call getTAs for each section. Note, getTAs returns a list of the TAs
    # teaching the input section

    # Return a list of all TA's
    pass

def getOldTAs():
    # Find a list of all TA's (you may want to use a function you wrote earlier!)

    # Using the OneTen module to call isOldTA on the list of TA's and return
    # a list of all TAs who've been teaching for a while
    
    # Return a list of all old TA's
    pass

# You may have to import a module to help you choose a RANDOM TA from a list

def getRandomNewTA():
    # Until you have found a new TA, keep randomly picking a TA from the list of
    # all TA's (you may want to use a OneTen function to see if the TA is not old).
    # Once you've found a new TA, return their name!
    pass

print(getAllTAs())
print("*****")
print(getOldTAs())
print("*****")
print(getRandomNewTA())