复制粘贴功能的Python程序

时间:2023-10-02 18:46:51 

今天因为给BeauBeau提供的抽奖号码做SQL文件,一开始收到ZIP文件解开压缩之后被吓到了——29个CSV文件,每个文件保存了1000个奖券ID和号码-_-!

照上次一样,打开每个CSV文件做先做单独的SQL文件,每个SQL中有1000条插入语句,随后将29个文件的所有SQL语句都复制粘贴到同一个总的SQL文件中。

CSV文件中的结构是“ID,NUMBER”的结构,其中ID是7位数字,NUMBER是11位数字。这样用正则式来进行捕捉的时候就比较方便了,在Eclipse的查找/替换功能中所使用的正则式就是“(\d{7}),(\d{11})”,进行替换的文本内容就是“INSERT INTO cards VALUES ('$1','$2',now());”。使用这种方法对29个CSV文件中的内容进行替换。

所有代码如下:


import sys, os 
def readFile(filename): 
    file=open(filename, "r") 
    s=file.read().strip() 
    file.close() 
    return s 

def writeFile(filename, files): 
    content=[] 
    for f in files: 
        print "reading file ' %s ' " % f 
        s=readFile(f) 
        print "read file ' %s ' completed" % f 
        content.append(s) 
    print "writing file ' %s ' " % filename 
    file=open(filename, "w") 
    file.write("\n/*-----This is a seperating line.-----*/\n".join(content)) 
    file.close() 
    print "write file ' %s ' completed" % filename 

filters=['.txt'] 
fullpath=os.getcwd(); 

print "opening directory: ' %s ' " % fullpath 

sys.path.append(fullpath) 
files = os.listdir(fullpath) 
files =[f for f in files if os.path.splitext(f)[1].lower() in filters] 
writeFile("beaunet_be_card.sql", files) 

程序的功能很简单,这也是我在Python的道路上迈出的第一步。

有时间的时候重写这段代码,加入正则替换功能

标签:复制,粘贴,Python
0
投稿

猜你喜欢

  • 一步步教你利用webpack如何搭一个vue脚手架(超详细讲解和注释)

    2023-07-02 17:00:47
  • 简单介绍Ruby中的CGI编程

    2022-09-07 21:38:14
  • 使用ASP实现广告代理

    2010-05-27 12:15:00
  • 请正确认识MySQL对服务器端光标的限制

    2008-12-17 14:58:00
  • django实现同一个ip十分钟内只能注册一次的实例

    2021-03-07 03:13:37
  • SQL实现LeetCode(181.员工挣得比经理多)

    2024-01-17 03:15:01
  • matplotlib.subplot()画子图并共享y坐标轴的方法

    2023-03-27 12:26:10
  • JSON.stringify转换JSON时日期时间不准确的解决方法

    2014-07-20 13:25:07
  • Mysql的DQL查询操作全面分析讲解

    2024-01-18 02:07:27
  • 对PyQt5中树结构的实现方法详解

    2021-02-07 16:19:20
  • Python的进程,线程和协程实例详解

    2021-05-05 04:35:59
  • 可以输入的下拉菜单

    2009-01-04 14:21:00
  • PHP生成随机数的方法实例分析

    2024-05-03 15:49:09
  • python3 tkinter实现添加图片和文本

    2022-08-07 04:28:17
  • python爬虫 urllib模块发起post请求过程解析

    2022-02-07 22:52:53
  • Tensorflow 自定义loss的情况下初始化部分变量方式

    2023-02-26 22:43:39
  • python 字典 setdefault()和get()方法比较详解

    2022-12-11 01:28:41
  • tensorflow中Dense函数的具体使用

    2021-04-26 17:01:49
  • python神经网络Inception ResnetV2模型复现详解

    2023-02-28 08:51:35
  • Go语言入门13之runtime包案例讲解

    2024-02-02 05:54:08
  • asp之家 网络编程 m.aspxhome.com