码迷,mamicode.com
首页 > 其他好文 > 详细

111

时间:2017-09-01 19:35:00      阅读:110      评论:0      收藏:0      [点我收藏+]

标签:mysqldb   oca   read   dal   mysqld   lin   导入   open   for   

#导入相关模块
import MySQLdb
import os
import re
#建立和mysql数据库的连接
conn = MySQLdb.connect(host=‘localhost‘,user=‘root‘,passwd=‘123lqh‘)
conn.select_db(‘slowquery‘)
curs = conn.cursor()
file=open("new2.txt")
x=()
j=()
for line in file.xreadlines():
    if ‘Count         :‘ in line:
        m=re.findall(r":(.+)",line)
        print m
    if ‘Time          :‘ in line:
        n=re.findall(r":(.+)",line)
        print n
for x in m :
    for j in n:
        print x+j

~

111

标签:mysqldb   oca   read   dal   mysqld   lin   导入   open   for   

原文地址:http://www.cnblogs.com/linqiuhua/p/7464735.html

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