The following program opens test.txt and displays its contents. If nothing is placed in the blank, then the contents of the file is displayed double spaced. What should be placed on the blank so that the contents of the file is displayed without the extra blank lines? infile = open( “test.txt.. , “r”) line = infile. readline() while line !-“”: print(line) line = infile.readline() infile.close() Select one: o a. line line.1strip() b. infile-infile.lstrip() c. infile-infile.rstrip()
OR
OR