2018年12月22日
摘要: def fun(): fpath = input('请输入一个文件路径:') str = input('请输入一个字符串:') n = int(input('请输入要插入的行数:')) l = [] # 定义一个空列表 with open(fpath,'r') as f: for i in f: l 阅读全文
posted @ 2018-12-22 09:12 liuyibo 阅读(111) 评论(0) 推荐(0) 编辑