接觸python已有一段時間了,下面針對python基礎知識的使用做一完整梳理:
1)避免‘\n’等特殊字元的兩種方式:
a)利用轉義字元‘\’ b)利用原始字元‘r’ print r'c:\now'
2)單行註釋,使用一個#,如:
#hello Python 多行註釋,使用三個單引號(或三個雙引號),如: '''hello python hello world''' 或 """hello python hello world""" 另外跨越多行的字串。也可以使用三個單引號或三個雙引號,如: '''......''' 或者 """......"""
3)字串中嵌入雙引號等特殊符號
a)利用轉義字元‘\’ b)使用單引號括起這個字串。print ('i l"o"ve fis.com')
4)條件分支:
if condition: 條件為真執行的操作 else: 條件為假執行的操作 if condition: action elif condition: action else: action python可以有效避免“懸掛else”(if else對應關係出錯) 條件表示式(三元操作符) small = x if x<y else y 如果x<y ,small=x.否則small=y 斷言assert:當這個關鍵字後面的條件為假,程式自動崩潰並丟擲異常 assert 3>4 可以利用他置入檢查點
5)while條件:
條件為真執行的操作 for 目標 in 表示式: 迴圈體 例:favorite='fishc' for i in favorite: print(i,end='') range([start,] stop[,step=1]) 生成一個從start引數的值到stop引數值的數字序列 break:終止當前迴圈體。跳到外層程式 continue:終止本輪迴圈,開始下一輪迴圈(if condition true)
6)and邏輯操作符可以將任意表示式連線在一起,並得到一個布林型別值
7)引入外援:
a)random模組 b)randint(),返回一個隨機的整數 import random 或 from random import randint() secret=random.randint(1,10)
8)python資料型別
a)數值型別:整型、布林型別、浮點型、e記法(1.5e10) b)型別轉換: int()轉換為整數 str()轉換為字串 float()轉換為浮點數 c)獲取關於型別的資訊: type()函式 a=520 type(a) isinstance()函式 a=12 isinstance(a,int) --->返回true isinstance(a,str) -->返回false
9)Python值常用操作符
+ - * / % **(冪運算) //(地板除法,結果偏小) 比較操作符 > < >= <= 邏輯操作符 and or not 優先順序: 冪運算** 正負號 + - 算術操作符 * / // + - 比較操作符 < > = 邏輯擦作福 not and or
10)列表-->可以把整數、浮點數、字串等打包在一起。陣列卻不能
建立一個普通列表: member = ['小甲魚','小布丁','黑夜'] 建立一個混合列表: mix=[1,'小甲魚',3.12,[1,2,3]] 建立空列表: empty=[] 向列表新增元素: append(): member.append('福祿娃')-->只能新增一個。末尾新增 extend(): member.extend(['test','test1'])-->只能以列表形式新增.末尾新增 insert(): member.insert(1,'牡丹')-->第一位插入牡丹 列表中獲取元素:使用索引index。 mix[1] 列表中刪除元素:使用remove()。 mix.remove('小甲魚') 使用del。 del mix[3]/mix 使用pop()。 mix.pop()/mix.pop(1) 列表切片:使用slice。 mix[1:4]/mix[1:]/mix[:4] 列表操作符:>,and,+,*,in/not in 列表的小夥伴:dir(list) mix.count('小甲魚') mix.index('小甲魚') 列表逆序:使用reverse。 mix.reverse() 列表排序:使用sort。 mix.sort() mix.sort(func,key) mix.sort(reverse=True)
11)元組--->不可改變的列表
和列表的主要不同點: a)建立和訪問一個元組: 大部分用()/, ;列表用[] b)元組不可修改數值 c)更新和刪除一個元組:temp = temp[:2] + ('test3',) + temp[2:] del temp d)IN/NOT IN,關係操作符,邏輯操作符,乘號操作符,連線操作符
12)字串的各種內建方法
str1='i love fishc.com' a=str1[:6] + '插入的字串'+str1[6:] capitalize(): str2.capitalize() casefold()--->全部小寫 str2.casefold() center(width)-->居中,不足空格填充 count(sub[,start[,end]])-->返回sub在string中出現的次數 endswith(sub[,start[,end]])-->以sub結束? startswith(prefix[,start[,end]])-->以prefix開頭 expandtabs([tabsize=8])-->將tab鍵轉換為空格 find(sub[,start[,end]])-->sub是否在字串中出現 rfind(sub)... index(sub[,start[,end]])-->跟sub一樣,不過會產生異常 rindex(sub..)..... istitle()/isupper()/ljust(width)/lower()/strip()/title()/lower() join(sub):以字串做分隔符,分割sub partion(sub):找到子字串sub,把字串分成一個3元組 replace(old,new[,count]) split(sep=none,maxsplit=-1)-->不帶引數以空格做分隔符 swapcase()-->字串大小寫翻轉 zfill(width)-->返回長度為width的字串,不夠補充空格
13)字串格式化 replacement
"{0} love {1}.{2:.2f}".format("i","fishc",3.1424) "{a} love {b}.{c}".format(a="i",b="fishc",c="com") "{0} love {b}.{c}".format("i",b="fishc",c="com") 格式化符號含義: %c:格式化字元及其ASCII碼 '%c %c %c' % (97,98,99) %s:格式化字串 %d:格式化整數 %o:格式化無符號八進位制數 %x:格式化無符號十六進位制數 %X:...(大寫) %f:格式化定點數,可指定小數點後的精度 %e:用科學技術發格式化定點數===%E %g:根據值的大小決定使用%f或%e===%G 格式化操作符輔助命令: m.n :m是顯示的最小總寬度,n是小數位精度 - :用於左對齊 + :在正數面前新增正號 # :在八進位制面前顯示0,在十六進位制面前顯示0x 0 :空格用0填充 字串轉義字元 \a:發出系統響鈴聲 \b、\t、\n
14)序列
列表、元組和字串的共同點: a)都可以通過索引 b)索引值從零開始 內建方法: list()-->help-->轉換為序列 list() a=list() list(iterable) b='i love fishc.com' b=list(b) tuple([iterable])-->把一個可迭代物件轉換為元組 b=tuple(b) str(obj)-->把obj物件轉換為字串 len(obj)-->返回obj的長度 max(序列/元組) / min(序列/元組) sum(iterable[,start=0])-->返回序列iterable。。的總和 sorted(序列/元組)-->排序 reversed(序列/元組)-->返回一個迭代器物件 list(reversed(序列/元組))-->返回序列 enumerate(序列/元組)-->返回一個迭代器物件 list(enumerate(序列/元組))-->返回陣列形式列表 zip(a,b)-->合併成以元組形式的列表 list(zip(a,b))
15)函式
定義:def Myfunction(): print('this is my first function') 呼叫:Myfunction() 函式的引數: def Myfunction(name,age): print(name+age+'test') Myfunction('gncao',‘age’) 函式的返回值: return value 形參(parameter):函式定義時的引數 實參(argument):實際傳遞的引數 函式文件:在函式中實現 在函式體中用 '' 或 # 檢視函式文件: a) functionname.__doc__ (四個下劃線) b) help(functionname) 關鍵字引數:避免引數出亂 def Myfunction(words,name): ...... Myfunction(words='words123',name='name123') 預設引數: def Myfunction(name='name123',words='words123') ...... 收集引數:在引數前面加上*號 def test(*params): print('引數的長度是:',len(params)) print('第二個引數是:',params[1]) test(1,'小甲魚',2,4,5,6,7) def test(*params,exp): print('引數的長度是:',len(params),exp) print('第二個引數是:',params[1]) test(1,'小甲魚',23,4,2,5,7,exp=0)
16)函式有返回值,過程沒有返回值
17)函式變數作用域(可見性)
區域性:local-->函式內部定義的變數,區域性可用 全域性:global-->全域性可訪問 當在函式內部試圖修改全域性變數時,則會在函式內部新建一個跟 全域性變數名相同的區域性變數
18)內嵌函式和閉包
global關鍵字: def myfun(): global count ->>>全域性變數 count=10 print(count) 內嵌函式: def fun1(): print('fun1()正在被呼叫...') def fun2(): print('fun2()正在被呼叫') fun2() 只能通過fun1()訪問fun2() 閉包:在一個內部函式中,對外部函式的變數的引用。成內部函式為閉包 def funx(x): def funy(y): return x * y return funy 呼叫方式: i=funx(8) i(5) 或 funx(4)(5) 通過關鍵字nonlocal可以使得內部函式呼叫外部函式變數。 def fun1(): x=5 def fun2(): nonlocal x x*=x return x return fun2()
19,遞迴:
recursion() def fac(n): if n==1: return 1 else: return n*fac(n-1) number=int(input('請輸入一個整數:')) result=fac(number) print('%d 的階乘是:%d' % (number,result)) 迭代方法: def fab(n): n1=1 n2=1 n3=1 if n <1: print('輸入有錯') return -1 while ( n-2>0 ): n3=n2+n1 n1=n2 n2=n3 n-=1 return n3 result=fab(20) if result != -1: print('總共有%d對小兔子誕生:' % result) 遞迴方法: def fab(n): if n < 1: print('error') return -1 if n==1 or n==2: return 1 else: return fab(n-1) + fab(n-2) result=fab(20) print('總共有%d對兔子誕生' % result) 但是遞迴的效率比較低
20)字典(key-value)
對映/序列 例1: dict1={'李寧':'一切皆有可能','耐克':'just do it','阿迪達斯':'impossible is nothing'} print('李寧的口號是:',dict1['李寧']) 例2: dict3=dict((('f',70),('i',105))) 例3: dict4=dict(小甲魚='程式設計改變世界',test='test') dict4['小甲魚']='修改小甲魚對應的value' -->如果沒有該KEY,則會自動新增一個KEY 字典的內建方法: a) dict2['key']-->訪問字典的元素 b) fromkeys(s[,v]) -->建立或查詢key dict1.fromkeys((1,2,3)) {1: None, 2: None, 3: None} dict1.fromkeys((1,2,3),'number') {1: 'number', 2: 'number', 3: 'number'} c) keys()-->dict.keys() -->列印出dict的所有key values()-->dict.values() -->列印出dict的所有value items()-->dict.items() -->列印出dict所有(key,value) get()--> dict.get(key) -->列印key對應的value dict.get(key,'text')-->列印key對應的value,如果不存在,則列印text in操作符 --> key in dict2 clear() -->dict.clear() -->清空dict的資料 copy() -->b=a.copy() -->拷貝字典 id(a)-->檢視id pop(key) --> dict.pop(key) -->彈出key popitem() -->dict.popitem() -->隨機彈出key setdefault() -->dict.setdefault(key) -->新建key update() -->dict.update(dict) -->更新字典
21)集合 --->唯一性
num={1,2,3,4,5} set()-->set1=set(列表/元組/字串) 不支援索引 訪問集合中的值: 使用for迴圈一一查詢 使用IN 或者 NOT IN add()-->set1.add(value) remove()-->set1.remove(value) 不可變集合: num3=frozenset(元組/列表)
22)檔案
輸入-->處理-->輸出 記憶體--->磁碟 open()開啟檔案: open('filename/path',mode='rwxabt+U') 檔案物件方法: f.close() -->關閉檔案 f.read(size=-1) -->從檔案讀取size個字元 f.readline() -->以寫入模式開啟,如果檔案存在,則在末尾新增 f.write(str) -->將str寫入檔案 f.writelines(seq) ->向檔案寫入seq序列。seq應該是一個返回字串序列 f.tell() -->返回當前的位置。書籤 f.seek(offset,from) -->在檔案中移動檔案指標,從from偏移offset位元組 for each in f: ---->瀏覽整個檔案 print(each)
23)檔案系統
模組:打包的檔案系統 os模組: 常用方法: os.getcwd():返回工作目錄 os.chdir(path):改變工作目錄 os.listdir(path=''):列出檔案目錄 os.mkdir(path):建立目錄 os.makedirs(path):建立遞迴目錄 os.remove(path):刪除檔案 os.removedirs(path):遞迴刪除 os.rename(old,new):檔案重新命名 os.system(command):執行系統的shell命令 os.curdir:指代當前目錄.等價於‘。’ os.pardir:指代上一級目錄 os.sep:輸出作業系統的路徑分隔符 os.linesep:當前平臺使用的行終止符 os.name:指出當前使用的作業系統
24)永久儲存
存放:pickling 讀取:unpickling 首先要匯入模組pickle import pickle >>> my_list=[1,2,3,'test',[23,43]] >>> pickle_file=open('my_list.pkl','wb') --》開啟一個pickle檔案 >>> pickle.dump(my_list,pickle_file) --》把my_list匯入到pickle_file >>>pickle_file.close() >>> pickle_file=open('my_list.pkl','wb') >>> my_list2=pickle.load(pickle_file) -->把pickle_file匯入到my_list2
25)異常處理
常見標準異常: AssertionErron/AttributeError/EOFError/IndexError/KeyError /NameError/OSError/OverflowError/SyntaxError/TypeError/ZeroDivisionError 捕獲異常: try: 檢測範圍 except Exception[as reason]: 出現異常後的處理程式碼 print('程式碼') except Exception[as reason]; 出現異常後的處理程式碼 print('daimai'+ str(reason)) except (Error1,Error2): 處理異常的程式碼 try: 檢測範圍 except Exception[as reason]: 處理異常的程式碼 finally: 無論如何都會處理的程式碼 raise語句丟擲異常 raise Exception('指示程式碼')
26)豐富的else語句和簡潔的with語句
else配合其他語句產生更多的功能 with語句:縮小工作量: 沒有使用with前: try: f=open('data.txt','r') for each in f: print(each) except OSError as reason: print('出錯啦:'+str(reason)) finally: f.close() 使用with後: try: with open('data.txt','w') as f: for each in f: print(each) except OSError as reason: print('出錯啦:'+str(reason))
27)圖形使用者介面程式設計:EasyGui
匯入模組三種方式: a)import easygui easygui.msgbox('test') b)from easygui import * msgbox('test') c)import easygui as g g.msgbox('test') 建議不要再IDLE上執行EASYGUI
28)類和物件
關鍵詞class class Turtle: #屬性 color='green' weight=10 #方法: def climb(self) print('climb tree') 呼叫: tt=Turtle() -->建立物件 tt.climb() -->呼叫方法 oo=物件導向 oo的特徵: 1,封裝 2,繼承 class mylist(list): pass --->表示只繼承父類,不做其他任何改動 list2=mylist() 3,多型 self-->相當於c++的this指標 >>> class ball: def setname(self,name): self.name=name def kick(self): print('i am %s,who kicked me????' % self.name) a=ball() a.setname('test') 4,_init_(self) --->構造方法 >>> class ball: def __init__(self,name): self.name=name def kick(self): print('i am %s,who kicked me????' % self.name) b=ball('test') 5,公有和私有 類屬性和方法預設都是公有的 name mangling --->名字改編,名字重整 私有變數:在變數名或函式名前加上'__'雙下劃線 訪問私有變數方法: 1,在類內定義方法,間接訪問私有變數 2,._類名__變數名 6,繼承 class derivedclassname(basename): .... 如果子類中出現和父類相同的方法,則覆蓋掉父類的方法 不想覆蓋掉父類的方法: 1,呼叫未繫結的父類方法 def __init__(self): fish.__init__(self) ----》先呼叫父類同名的方法 self.hungry=True 2,使用super函式 def __init__(self): super().__init__() self.hungry=True 7,多重繼承 class derivedclass(base1,base2,base3): ...... 8,拾遺 Mix-in程式設計機制 類,類物件,例項物件,例項屬性(static) 如果屬性的名字和方法的名字相同,則屬性會覆蓋掉方法 繫結: class bb: def printbb(): print('no zuo no die') b1=bb() b1.printbb() ---->會出錯誤 9,一些相關的BIF: issubclass(class,classinfo) 1,一個類被認為是自己的子類 2,classinfo可以是類物件組成的元祖,只要class與其中任何一個候選類的子類,則返回TRUE isinstance(object,classinfo) 檢查物件是否屬於classinfo類 1,如果第一個引數不是物件,則永遠返回fasle 2,如果第二個不是類,則會丟擲typeerror的異常 hasattr(object,name) -->測定object中是否有’name‘屬性 hasattr(c1,'x') getattr(object,name[,default]) -->如果有屬性返回1,否則返回default setattr(object,name,value) -->給object中的name屬性賦值vlalue delattr(object,name) -->刪除object中的name屬性 property(fget=none,fset=none,fdel=none,doc=none)設定屬性,設定定義好的屬性 獲取屬性的方法,設定屬性的方法,刪除屬性的方法 class c: def __init__(self,size=10): self.size=size def getsize(self): return self.size def setsize(self,value): self.size=value def delsize(self): del self.size x=property(getsize,setsize,delsize) c1=c() c1.x / c1.x=19 /c1.size
29)魔法方法(構造和析構)
特點: 1,魔法方法總是被雙下劃線包圍,例如__init__ 2,魔法方法是物件導向python的一切 3,魔法方法的魔力體現在他們總能夠在適當的時候被自動呼叫 構造方法: __init__(self[,...]) -->返回值一定是NONE 用在例項初始化 __new__(cls[,...]) --->第一個初始化的方法 當繼承一個不可修改屬性的類時,則呼叫此方法修改屬性 class capstr(str): def __new__(cls,string): string=string.upper() return str.__new__(cls,string) 析構方法: __del__(self) 當資料不適用時,呼叫此方法 只有在呼叫了該物件的所有例項都消失時才會產生此方法
30)魔法方法:算術運算
__add__(self,other):定義加法的行為'+' 例子: >>> class new_int(int): def __add__(self,other): return int.__sub__(self,other) def __sub__(self,other): return int.__add__(self,other) >>> a=new_int(3) >>> b=new_int(8) >>> a+b ---->此時a是self,b是other -5 __sub__(sub,other):減法 __mul__(sub,other):乘法 truediv/floordiv/mod/divmod/pow/lshift/rshift/and/xor/or divmod(a,b)返回的值是一個元祖:(a//b,a%b)
31)網路socket
socket提供較為底層的網路連線及資料傳輸功能 tcp socket/udp socket/unix socket 整個通訊過程三步走: a)客戶端連線伺服器: 匯入模組: import socket 建立tcp型別的socket: c=socket.socket(socket.AF_INET,socket.SOCK_STREAM) 建立到指定ip地址、埠的tcp連線 c.connect(('211.121.12.43',80)) 在系統上使用netstat命令檢視新建的連線: 關閉連線: c.close() b)伺服器端監聽: import socket s=socket.socket(socket.AF_INET,socket.sock.SOCK_STREAM) s.bind(('127.0.0.1',80)) s.listen(1) while True: cs,ca=s.accept() -->建立socket和客戶端通訊 cs.sendall('replay') cs.close() c)客戶端收發資料: import socket c=socket.socket(socket.AF_INET,socket.SOCK_STREAM) c.connect(('211.121.12.43',80)) 向服務端傳送‘hello’ c.send('hello') 讀取服務端回覆資料: c.recv(1024) c.close()
32)HTTP庫實現HTTP協議
匯入httplib模組: import httplib 建立http例項,指定連線主機名和埠: http=httplib.HTTPConnection('itercast.com',80) 指定要獲取的URI: http.request('GET','/ask') -->get方法獲取指定資料,ask表示要訪問的頁面 輸出返回的網頁body內容: print http.getresponse().read() 關閉連線: http.close() 更簡單的urllib庫: 匯入urllib模組 import urllib 建立一個opener的例項 opener=urllib.build_opener() 開啟指定的url f=opener.open('http://www.baidu.com/ask') 讀取返回內容 f.read()
33)python連線mysql的模組
import MySQLdb conn=MySQLdb.connect(user='root',passwd='',host='127.0.0.1') --->連線mysql,預設是localhost 建立遊標,通過遊標傳送sql指令 cur=conn.cursor() conn.select_db('database-name') --》連線資料庫,本例用week cur.execute('insert into userinfo(name,age) value('milo',20)') --》執行sql語句。insert 簡單化操作方式: sqli='insert into userinfo(name,age,gender) value(%s,%s,%s)' cur.execute(sqli,('a',37,'male')) cur.executemany(sqli,[('test',34,'male'),('test2',36,'female')]) cur.execute('delete from userinfo where id=20') -->刪除資料 cur.execute('select * from userinfo') -->查詢資料,但是不能直接顯示,使用以下方法可以檢視 cur.fetchone()-->在python上顯示一行資料 cur.scroll(0,'absolute')-->移動指標,此為絕對方式 cur.fetchmany(15)-->在python上顯示15條資料.需要輸入資料。必須先查詢 cur.fetchmany(cur.execute('select * from userinfo')) -->通過一條命令顯示資料 cur.close() -->關閉遊標的連線 conn.close() --->關閉資料庫連線