''' This file contains the template for Assignment2. For testing it, I will place it in a different directory, call the function , and check its output. So, you can add/remove whatever you want to/from this file. But, don't change the name of the file or the name/signature of the following function. Also, I will use to run this code. ''' def shortest_useful_rope(input_file_path, output_file_path): ''' This function will contain your code. It wil read from the file , and will write its output to the file . ''' pass ''' To test your function, you can uncomment the following command with the the input/output files paths that you want to read from/write to. ''' # shortest_useful_rope('', '')