前言眾所周知在python中讀取檔案常用的三種方法:read(),readline() ... f = open("a.txt") line = f.readline() print(type(line)) while line: ...
確定! 回上一頁