日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > python >内容正文

python

Python文件操作中进行字符串替换(保存到新文件/当前文件)

發布時間:2025/3/20 python 9 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Python文件操作中进行字符串替换(保存到新文件/当前文件) 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

題目:

  • 首先將文件:/etc/selinux/config 進行備份 文件名為 /etc/selinux/config.bak
  • 再文件:/etc/selinux/config 中的enforcing 替換為 disabled
  • # This file controls the state of SELinux on the system. # SELINUX= can take one of these three values: # enforcing - SELinux security policy is enforced. # permissive - SELinux prints warnings instead of enforcing. # disabled - No SELinux policy is loaded. SELINUX=disabled # SELINUXTYPE= can take one of three two values: # targeted - Targeted processes are protected, # minimum - Modification of targeted policy. Only selected processes are protected. # mls - Multi Level Security protection. SELINUXTYPE=enforcing

    方法一:用replace

    ''' 遇到問題沒人解答?小編創建了一個Python學習交流QQ群:778463939 尋找有志同道合的小伙伴,互幫互助,群里還有不錯的視頻學習教程和PDF電子書! ''' import os import shutildef selinux_config():"""關閉SELINUX修改文件內容:return:"""file_selinux = '/etc/selinux/config'backup_file_selinux = file_selinux + '.bak'temp_file_selinux = file_selinux + '.temp'if not os.path.exists(backup_file_selinux):shutil.copy2(file_selinux, backup_file_selinux)with open(file_selinux, mode='r') as fr, open(temp_file_selinux, mode='w') as fw:origin_line = 'SELINUX=enforcing'update_line = 'SELINUX=disabled'for line in fr:fw.write(line.replace(origin_line, update_line))os.remove(file_selinux)os.rename(temp_file_selinux, file_selinux)if __name__ == '__main__':selinux_config()

    方法二:用re.sub

    #! /usr/bin/env python # -*- coding: utf-8 -*-import os import re import shutildef selinux_config():"""關閉SELINUX修改文件內容:return:"""file_selinux = '/etc/selinux/config'backup_file_selinux = file_selinux + '.bak'temp_file_selinux = file_selinux + '.temp'if not os.path.exists(backup_file_selinux):shutil.copy2(file_selinux, backup_file_selinux)with open(file_selinux, mode='r') as fr, open(temp_file_selinux, mode='w') as fw:origin_line = 'SELINUX=enforcing'update_line = 'SELINUX=disabled'for line in fr:re_sub_list = re.sub(origin_line, update_line, line) # 這里用re.sub進行替換后放入 re_sub_list中fw.writelines(re_sub_list) # 將列表中的每一行進行寫入。writelines是將序列對象中的每一行進行寫入。os.remove(file_selinux)os.rename(temp_file_selinux, file_selinux)if __name__ == '__main__':selinux_config()

    總結

    以上是生活随笔為你收集整理的Python文件操作中进行字符串替换(保存到新文件/当前文件)的全部內容,希望文章能夠幫你解決所遇到的問題。

    如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。