import os
def add_text(path,filepath:list):
path_list = os.listdir(path)
print(path_list)
for i in path_list:
for p in filepath:
if p == i:
add_path = os.path.join(path,i)
file = os.listdir(add_path)
for i in file:
absolute_path = os.path.join(add_path,i)#绝对路径
if os.path.isfile(absolute_path) :
print(absolute_path)
# if os.path.isfile(i):
# filepath, tempfilename = os.path.split(i) # 拆开
# filename, extension = os.path.splitext(tempfilename)# 获取扩展名
f = open(absolute_path, "a+", encoding="utf8")
f.write("test\n")
f.close()
if __name__ == '__main__':
add_text(r"F:\test",['a','b'])
# filepath, tempfilename = os.path.split(i) # 拆开
# #filename, extension = os.path.splitext(tempfilename)# 获取扩展名
# #if filename[]
from xlrd import open_workbook
from xlutils.copy import copy
#在创建好的excel种追加新的数据
if __name__ == '__main__':
r_xls = open_workbook("excelTest.xls") # 读取excel文件
row = r_xls.sheets()[0].nrows # 获取已有的行数
excel = copy(r_xls) # 将xlrd的对象转化为xlwt的对象
worksheet = excel.get_sheet(0) # 获取要 *** 作的sheet
# 对excel表追加一行内容
worksheet.write(row, 0, '内容1') # 括号内分别为行数、列数、内容
worksheet.write(row, 1, '内容2')
worksheet.write(row, 2, '内容3')
excel.save("excelTest.xls") # 保存并覆盖文件
结果: 内容虽然添加进去了,但是原来的excel格式被清除了
原Excel:
追加后的excel:
1、打开pycharm开发工具,在python项目中,定义列表变量b1并赋值。
2、使用列表中的方法,向列表b1的第二个位置,添加元素yhd,并打印结果。
3、保存代码并运行python文件,结果控制台出现了报错。
4、检查代码发现,本来是想用insert,结果写成了index;修改代码方法,然后保存代码。
5、再次运行python文件,结果发现yhd添加到第二个位置。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)