''' Purpose: solve tell.py test problem ''' # 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 ...