码迷,mamicode.com
首页 > 编程语言 > 详细

python 脚本去除#开头和空行

时间:2019-08-16 10:26:44      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:nal   finally   脚本   去除   main   pytho   str   ring   usr   

#!/usr/bin/python # -*- coding: UTF-8 -*- # python 3.4 import re import sys def main(argv): rf = open(argv[0],‘rU‘,encoding=‘UTF-8‘) outstring = ‘‘ try: outstring = rf.read() finally: rf.close() m = re.compile(r‘#.*‘) outtmp = re.sub(m,‘‘,outstring) outstring = outtmp outtmp = re.sub(r‘^\n|\n+(?=\n)|\n$‘,‘‘,outstring) outstring = outtmp print(argv[0], argv[1]) f = open(argv[1], ‘w‘) f.write(outstring) f.close() if __name__ == "__main__": main(sys.argv[1:])

python 脚本去除#开头和空行

标签:nal   finally   脚本   去除   main   pytho   str   ring   usr   

原文地址:https://blog.51cto.com/sgk2011/2429974

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!