2018年12月15日
摘要: 本来面目 第一次简化 in_file =open(from_file) indata = in_file.read() 合为 indata = open(from_file).read() 会报错,因为写了 indata = open(from_file).read() 就无序写关闭语句in_fil 阅读全文
posted @ 2018-12-15 23:02 junkdog 阅读(256) 评论(0) 推荐(0)