Jason Sugiharto

Results 1 comments of Jason Sugiharto

fname = input("Please enter the name of the file: ") handle = open(fname) count = 0 total = 0 for line in handle: if line.startswith("X-DSPAM-Confidence: "): lines = line.find(':') newline...