Question: Describe what the python code/block do each line there is a comment For each Question, provide a series of detailed comments below describing what the
Describe what the python code/block do each line there is a comment

For each Question, provide a series of detailed comments below describing what the code does. Use as much space as you need. The first question appears in the main function. There are 30 questions that require you to provide detailed comments explaining what the line or block of code does import random import os # Question No. 8 class File: # Question No. 9 def-init--(self, fileName): self.name = self.handle fileName = open(self.name, 'a') # Question No. 10 def addLines(self,text): self.handle.write(text + ' # Question No. 11 def addRandomText(self, numberOfLines): fori in range(numberOfLines): self.handle.write(Som Random Text n) # Question No. 12 def deleteFile(self: os.remove(self.name) # Question No. 13 def displayFileContents(self): for line in self.name: print(line) # Question No. 14 def closeFile(self): self.handle.closeO
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
