while True: line = file.readline() if not line: break print(line, end='') file.close(). 如果資料讀取完畢,readline()會傳回空字串,這在布林判斷式中會是false ...
確定! 回上一頁