1.

Which function is used to read all the characters?(a) Read()(b) Readcharacters()(c) Readall()(d) Readchar()

Answer» Correct choice is (a) Read()

The best I can explain: The read function reads all characters fh = open(“filename”, “r”)

content = fh.read().


Discussion

No Comment Found