A. textfile = open( 'exampleFile.txt', 'r' ) B. textfile = open( 'exampleFile.txt', 'w' ) C. textfile = open( 'exampleFile.txt', 'x' ) D. textfile = open( 'exampleFile.txt', 'a' )
A. textfile = open( 'exampleFile.txt', 'rb+' ) B. textfile = open( 'exampleFile.txt', 'rt+' ) C. textfile = open( 'exampleFile.txt', 'ab' ) D. textfile = open( 'exampleFile.txt', 'ab+' )
A. textfile = open( 'exampleFile.txt', 'a' ) B. textfile = open( 'exampleFile.txt', 'a+' ) C. textfile = open( 'exampleFile.txt', 'ab' ) D. textfile = open( 'exampleFile.txt', 'ab+' )