Identify the errors in the program. Underline the line which has error and write the correct line open('sample.txt') f.write('This is first line') f.write('This is second line')
Answers
Answered by
1
Answer:
f.open('sample.txt') f.write('This is first line') f.write('This is second line')
Similar questions