Program to read all the lines in a file using readline() function file = open("python.txt", "r") while True: content=file.readline() if not content: break ...
確定! 回上一頁