天池像两个鸡蛋融合在一起,上面大雾迷蒙,更添加了几分神秘的色彩。而且天池在长白山的最高点,所以海拔很高,就像耸入云端似的,都是大雾,所以被称为天池。旁边还有火山,火山的顶上灰蒙蒙的,全都被火山灰覆盖了。那里还有很多火山石,有的像狮子,有的像大象,有的像绵羊……数也数不清。
本文实例讲述了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程序设计有所帮助。
本文python实现mysql的单引号字符串过滤方法到此结束。擁有理想只是一種智力,實現理想才是一種能力!小编再次感谢大家对我们的支持!