Let's start with the simplest way to read a file in python. with open("input.txt") as f: data = f.readlines() for line in data: process(line).
確定! 回上一頁