创建txt文件,干巴巴的特产 path = "C:\\Users\\Administrator\\Desktop\\text\\" numb = int(input("需要创建几个文件:")) a = 1 for i in range(numb): f = open(path + 'text' + '_' + str(a) + '.txt', 'w') f.write('这是第' + str(a) + '文件') a += 1 print('创建' + str(numb) + '文件完成!') 效果: PS:提需求,下期更新