import os path = "/Users/Desktop/test/" # Read every file in directory for filename in os.listdir(path): with open(filename, "r") as f: # Read each line of ...
確定! 回上一頁