摘要:
1 # coding: UTF-8 2 3 blist = [] 4 split_char = '/n' 5 with open('b.txt', 'r') as bf: 6 blist = [b.strip().split(split_char) for b in bf] 7 i=0 8 while i<4: 9 10 a = blist[i][... 阅读全文
posted @ 2018-04-09 18:07
涕溚
阅读(89)
评论(0)
推荐(0)