时间:2021-05-22
本文实例讲述了python实现mysql的单引号字符串过滤方法。分享给大家供大家参考,具体如下:
最主要用这个函数,可以处理MySQLdb.escape_string(content).
class Guide: def __init__(self): self.time_zone = 7*3600 #设置时区 self.now_time = int(time.time()) + self.time_zone #取得当前时间 #本地 self.gamedb_model = mysql_conn.MySQLHelper(config.game_db['host'], config.game_db['user'], config.game_db['password'], config.game_db['db_name'], config.game_db['port']) #远程 self.remote_model = mysql_conn.MySQLHelper(config.remote_db['host'], config.remote_db['user'], config.remote_db['password'], config.remote_db['db_name'], config.remote_db['port']) #game center self.commdb_model = mysql_conn.MySQLHelper(config.comm_db['host'], config.comm_db['user'], config.comm_db['password'], config.comm_db['db_name'], config.comm_db['port']) def index(self): #拿到第二天未登陆的用户 for line in open("2014.3.20_global_ips.txt"): list = line.split('||') l = len(list) if l == 3: info = '' else: info = MySQLdb.escape_string(list[3]) self.commdb_model.insert('ip_area',{'start_ip':list[0],'end_ip':list[1],'area':list[2],'info':info})if __name__ =="__main__": keep = Guide() keep.index()希望本文所述对大家python程序设计有所帮助。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
Python字符串(string)详解及代码Python的字符串可以使用单引号('),双引号("),三引号(''');三引号(''')里面,可以添加单引号和双引
Python中有三种方式表示字符串第一种方法使用单引号(‘)用单引号括起来表示字符串,例如:str='thisisstring';printstr;第二种方法使
这次主要介绍字符串常用操作方法及例子1.python字符串在python中声明一个字符串,通常有三种方法:在它的两边加上单引号、双引号或者三引号,如下:name
在Python当中表达字符串既可以使用单引号,也可以使用双引号,那两者有什么区别吗?python单引号和双引号的区别简单来说,在Python中使用单引号或双引号
前面简单介绍了Python基本运算,这里再来简单讲述一下Python字符串相关操作1.字符串表示方法>>>"www.jb51.net"#字符串使用单引号(')或