摘要: import csv f = open('Desktop.txt','r') f2 = open('Laptop.txt','r') f3 = open('UserList.csv','r') num = 0 num2 = 0 num3 = 0 for line in f.readlines()[1:]: print(line) num=num+1 for line2 in... 阅读全文
posted @ 2016-12-02 14:12 tec2019 阅读(170) 评论(0) 推荐(0) 编辑