def remove _ first _ line _ and _ spaces(文件路徑):
使用open(file_path,' r ')作為文件:
#從文件的第二行開始讀取所有內容。
content = file . readlines()[1:]
#刪除所有行的前導和尾隨空格
content =[line . strip()for line in content]
#將新內容寫回文件
使用open(file_path,' w ')作為文件:
file.write('\n ')。加入(內容))
定義進程目錄(目錄路徑):
對於os.listdir(目錄路徑)中的文件名:
#建立完整的文件路徑
file_path = os.path.join(目錄路徑,文件名)
如果os.path.isfile(file_path):
刪除第壹行和空格(文件路徑)
if __name__ == '__main__ ':
directory _ path = ' path/to/directory '
進程目錄(目錄路徑)
註意:請用您要處理的目錄的實際路徑替換“path/to/directory”。