Which of the following statements is a valid way to open the file test.data and associate it with unit 10? open(10,test.data) open(10,'test.data') open(10, file= test.data ) open(10,file='test.data') open(10 = test.data ) Back to the 201 Homepage or Back to the exercise index page
open(10,'test.data')
open(10, file= test.data )
open(10,file='test.data')
open(10 = test.data )