""" Purpose: determine the hidden super power of classmate """ # get access to web-based data support import url # set base web folder data location PEOPLE_URL = "http://www.cs.virginia.edu/~cs1112/people/" # set file name file_name = "my-power.txt" # get computing id of interest reply = input( "Enter computing id: " ) # clean up the reply to get the user id user_id = reply.strip() user_id = user_id.lower() # set person folder web_folder = PEOPLE_URL + user_id + "/" # set link link = web_folder + FILE_NAME # read web page contents = url.get_contents( link ) # clean up word = contents.strip() # reveal word print( word )