''' Purpose: implement program for ability.py problem ''' # get access to web module import url # specify base folder for web files BASE_FOLDER = "http://www.cs.virginia.edu/~cs1112/words/" # get name of a web file filename = input( "Enter web file: " ) # get word of interest word = input( "Enter word: " ) ...