這篇文章主要介紹了python面向?qū)ο蟮牟僮鞣椒ǖ南嚓P(guān)知識(shí),內(nèi)容詳細(xì)易懂,操作簡單快捷,具有一定借鑒價(jià)值,相信大家閱讀完這篇python面向?qū)ο蟮牟僮鞣椒ㄎ恼露紩?huì)有所收獲,下面我們一起來看看吧。
我們提供的服務(wù)有:成都網(wǎng)站制作、成都網(wǎng)站設(shè)計(jì)、微信公眾號開發(fā)、網(wǎng)站優(yōu)化、網(wǎng)站認(rèn)證、阜南ssl等。為成百上千家企事業(yè)單位解決了網(wǎng)站和推廣的問題。提供周到的售前咨詢和貼心的售后服務(wù),是有科學(xué)管理、有技術(shù)的阜南網(wǎng)站制作公司
操作redis集群:
import rediscluster import redis # startup_nodes = [ # {"host":"118.24.3.40","password":"HK139bc&*","port":6379}, # {"host":"118.24.3.41","password":"HK139bc&*","port":6379} # ] # r = rediscluster.RedisCluster(startup_nodes =startup_nodes, decode_responses=True) # print(r.keys()) r = redis.Redis(host="118.24.3.40",password="HK139bc&*",port=6379,db=4,decode_responses=True) r.set("ljq:ljq1","ljj") #文件夾ljq,key:ljq1 print(r.get("ljq:ljq1")) #取值時(shí)要把文件夾帶上
面向?qū)ο螅?/strong>
# class Car: # wheel = 4 # color = "heise" # name = "feimaqiche" # def fly(self): # print(self.name) # # fmz_car = Car()#實(shí)例化 fmz_car:實(shí)例對象 # fmz_car.fly()#調(diào)用類里面的方法 #self 本類對象,實(shí)例化的是誰,self代表的是誰 class Car: wheel = 4 #類變量,公共的,通過self.wheel來應(yīng)用 def __init__(self,color,name): #構(gòu)造函數(shù),類在實(shí)例化的時(shí)候,自動(dòng)執(zhí)行的函數(shù) self.color = color self.name = name def __del__(self):#析構(gòu)函數(shù),實(shí)例在銷毀的時(shí)候執(zhí)行 print("析構(gòu)函數(shù)") def fly(self): name= "www"#局部變量 print(id(self)) print(self.name) def say(self): print("%s,%s"%(self.name,self.color)) fmz_car = Car("紅色的","汽車")#實(shí)例化 fmz_car:實(shí)例對象 fmz_car.fly()#調(diào)用類里面的方法 fmz_car.say()#調(diào)用類里面的方法 print(id(fmz_car)) fmz_car2 = Car("黃色的","汽車")#實(shí)例化 fmz_car:實(shí)例對象 fmz_car2.fly()#調(diào)用類里面的方法 fmz_car2.say()#調(diào)用類里面的方法 #raise 主動(dòng)拋出異常 # 私有方法,私有變量, :前面加 __ 類里可以調(diào)用,出了類之后就不能調(diào)用
封裝MySQL類:
import pymysql from day8li.homework.const import mysql_info class MySQL: #經(jīng)典類 def __init__(self,mysql_info,data_type=1): self.mysql_info = mysql_info self.data_type = data_type self.__connect_status = False self.__connect() def __connect(self): print("開始連接mysql") try: self.__conn = pymysql.connect(**self.mysql_info) except: print("數(shù)據(jù)庫連接出錯(cuò)!" ) raise Exception("數(shù)據(jù)庫連接出錯(cuò)") self.__connect_status = True if self.data_type != 1: self.__cur = self.__conn.cursor(pymysql.cursors.DictCursor) else: self.__cur = self.__conn.cursor() print("mysql連接成功!") def execute(self,sql): print("開始執(zhí)行sql",sql) try: self.__cur.execute(sql) except: print("sql不正確,sql語句是%s" % sql) else: print("sql執(zhí)行完成!") return True def fetchone(self,sql): if self.execute(sql): return self.__cur.fetchone() def fetchall(self,sql): if self.execute(sql): return self.__cur.fetchall() def __del__(self): self.__close() print("mysql 連接關(guān)閉完成") def __close(self): if self.__connect_status: self.__cur.close() self.__conn.close() if __name__ == '__main__': my = MySQL(mysql_info) my.execute("update user_nhy_7 set nick ='杜拉拉' where id = 3") ret = my.fetchone("select * from user_nhy_7 where id = 3") print(ret) ret = my.fetchall("select * from user_nhy_7") print(ret)
日志打?。?/strong>
# import logging # log = logging.Logger("abc",level="INFO") # log.info("haha") # import loguru # loguru.logger.debug("aaa") # loguru.logger.info("aaa") # loguru.logger.warning("aaa") # loguru.logger.error("aaa") from loguru import logger import sys logger.remove() # 清除它的默認(rèn)設(shè)置設(shè)置 # fmt = '{time}||{level}||{file.path}:line:{line}:function_name:{function} ||msg={message}' fmt = '{time}||msg={message}' # level file function module time message # logger.add(sys.stdout, level='DEBUG', format=fmt) # 咱們本地運(yùn)行的時(shí)候,在控制臺(tái)打印 # # enqueue=True 異步寫入日志 # logger.add('fmz.log', level='DEBUG', format=fmt, encoding='utf-8', # enqueue=True, rotation='1 day', # rotation多久產(chǎn)生一個(gè)日志文件 # retention='10 days') # 寫在日志文件里面 # # logger.info("3253252") class Log: logger.remove()#清除它的默認(rèn)設(shè)置設(shè)置 fmt = '[{time}][{level}][{file.path}:line:{line}:function_name:{function}] ||msg={message}' #level file function module time message logger.add(sys.stdout,level="DEBUG",format=fmt)#咱們本地運(yùn)行的時(shí)候,在控制臺(tái)打印 logger.add("test.log",level="DEBUG",format=fmt,encoding='utf-8',enqueue=True,rotation='1 day',retention='10 days')#寫在日志文件里面 debug = logger.debug info = logger.info warning = logger.warning error = logger.error if __name__ == '__main__': Log.info("xxxx")
關(guān)于“python面向?qū)ο蟮牟僮鞣椒ā边@篇文章的內(nèi)容就介紹到這里,感謝各位的閱讀!相信大家對“python面向?qū)ο蟮牟僮鞣椒ā敝R(shí)都有一定的了解,大家如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。