netdzb 当前离线
上尉
TOP
codegay 当前离线
少校
# -*- coding: utf-8 -*-"""Spyder Editor This is a temporary script file."""import os with open("list.txt","w") as f: for l in os.listdir("."): f.write(l+"\r\n") f.close()#假设不用withCOPY