''' Purpose: reconsider Test 1 programming problems. ''' ### phrase.py ---------------------------------- ### mtom.py ---------------------------------- ''' reply = input( "Enter number of moments: " ) ''' ### fila.py ---------------------------------- ''' reply = input( "Enter two strings: " ) ''' ### lest.py ---------------------------------- ''' reply = input( "Enter text: " ) ''' ### tell.py ---------------------------------- # get support to read datasets import url ''' # define the URL for the dataset web folder WEB_FOLDER = "http://www.cs.virginia.edu/~cs1112/datasets/csv/" # get the dataset reply = input( "Enter name of dataset: " ) name = reply.strip() link = WEB_FOLDER + name dataset = url.get_dataset( link ) # analyze the dataset ... '''