亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Python有什么編程技巧

發布時間:2021-11-22 16:51:26 來源:億速云 閱讀:123 作者:iii 欄目:編程語言

本篇內容介紹了“Python有什么編程技巧”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

1. 原地交換兩個數字

Python 提供了一個直觀的在一行代碼中賦值與交換(變量值)的方法,請參見下面的示例:

x,y= 10,20print(x,y)x,y= y,xprint(x,y)#1 (10, 20)#2 (20, 10)

賦值的右側形成了一個新的元組,左側立即解析(unpack)那個(未被引用的)元組到變量 和 。

一旦賦值完成,新的元組變成了未被引用狀態并且被標記為可被垃圾回收,最終也完成了變量的交換。

2. 鏈狀比較操作符

比較操作符的聚合是另一個有時很方便的技巧:

n= 10result= 1< n< 20print(result)# Trueresult= 1> n<= 9print(result)# False

3. 使用三元操作符來進行條件賦值

三元操作符是 if-else 語句也就是條件操作符的一個快捷方式:

[表達式為真的返回值] if [表達式] else [表達式為假的返回值]

這里給出幾個你可以用來使代碼緊湊簡潔的例子。下面的語句是說“如果 y 是 9,給 x 賦值 10,不然賦值為 20”。如果需要的話我們也可以延長這條操作鏈。

x = 10 if (y == 9) else 20

同樣地,我們可以對類做這種操作:

x = (classA if y == 1 else classB)(param1, param2)

在上面的例子里 classA 與 classB 是兩個類,其中一個類的構造函數會被調用。

下面是另一個多個條件表達式鏈接起來用以計算最小值的例子:

def small(a,b,c):returnaifa<= banda<= celse(bifb<= aandb<= celsec)print(small(1,0,1))print(small(1,2,2))print(small(2,2,3))print(small(5,4,3))#Output#0 #1 #2 #3

我們甚至可以在列表推導中使用三元運算符:

[m**2 if m > 10 else m**4 for m in range(50)]#=> [0, 1, 16, 81, 256, 625, 1296, 2401, 4096, 6561, 10000, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681, 1764, 1849, 1936, 2025, 2116, 2209, 2304, 2401]

4. 多行字符串

基本的方式是使用源于 C 語言的反斜杠:

multiStr= “select * from multi_rowwhere row_id < 5”print(multiStr)# select * from multi_row where row_id < 5

另一個技巧是使用三引號:

multiStr= “””select * from multi_rowwhere row_id < 5&Prime;””print(multiStr)#select * from multi_row#where row_id < 5

上面方法共有的問題是缺少合適的縮進,如果我們嘗試縮進會在字符串中插入空格。所以***的解決方案是將字符串分為多行并且將整個字符串包含在括號中:

multiStr= (“select * from multi_row ”“where row_id < 5 ”“order by age”)print(multiStr)#select * from multi_row where row_id < 5 order by age

5. 存儲列表元素到新的變量中

我們可以使用列表來初始化多個變量,在解析列表時,變量的數目不應該超過列表中的元素個數:【譯者注:元素個數與列表長度應該嚴格相同,不然會報錯】

testList= [1,2,3]x,y,z= testListprint(x,y,z)#-> 1 2 3

6. 打印引入模塊的文件路徑

如果你想知道引用到代碼中模塊的絕對路徑,可以使用下面的技巧:

import threadingimport socketprint(threading)print(socket)#1- #2-

7. 交互環境下的 “_” 操作符

這是一個我們大多數人不知道的有用特性,在 Python 控制臺,不論何時我們測試一個表達式或者調用一個方法,結果都會分配給一個臨時變量: _(一個下劃線)。

>>> 2+ 13>>> _3>>> print_3

“_” 是上一個執行的表達式的輸出。

8. 字典/集合推導

與我們使用的列表推導相似,我們也可以使用字典/集合推導,它們使用起來簡單且有效,下面是一個例子:

testDict= {i: i *iforiinxrange(10)}testSet= {i *2foriinxrange(10)}print(testSet)print(testDict)#set([0, 2, 4, 6, 8, 10, 12, 14, 16, 18])#{0: 0, 1: 1, 2: 4, 3: 9, 4: 16, 5: 25, 6: 36, 7: 49, 8: 64, 9: 81}

注:兩個語句中只有一個 <:> 的不同,另,在 Python3 中運行上述代碼時,將 改為 。

9. 調試腳本

我們可以在 模塊的幫助下在 Python 腳本中設置斷點,下面是一個例子:

import pdbpdb.set_trace()

我們可以在腳本中任何位置指定 并且在那里設置一個斷點,相當簡便。

10. 開啟文件分享

Python 允許運行一個 HTTP 服務器來從根路徑共享文件,下面是開啟服務器的命令:

# Python 2  python -m SimpleHTTPServer  # Python 3  python3 -m http.server

上面的命令會在默認端口也就是 8000 開啟一個服務器,你可以將一個自定義的端口號以***一個參數的方式傳遞到上面的命令中。

11. 檢查 Python 中的對象

我們可以通過調用 dir() 方法來檢查 Python 中的對象,下面是一個簡單的例子:

test= [1,3,5,7]print(dir(test))[&lsquo;__add__&rsquo;, &lsquo;__class__&rsquo;, &lsquo;__contains__&rsquo;, &lsquo;__delattr__&rsquo;, &lsquo;__delitem__&rsquo;, &lsquo;__delslice__&rsquo;, &lsquo;__doc__&rsquo;, &lsquo;__eq__&rsquo;, &lsquo;__format__&rsquo;, &lsquo;__ge__&rsquo;, &lsquo;__getattribute__&rsquo;, &lsquo;__getitem__&rsquo;, &lsquo;__getslice__&rsquo;, &lsquo;__gt__&rsquo;, &lsquo;__hash__&rsquo;, &lsquo;__iadd__&rsquo;, &lsquo;__imul__&rsquo;, &lsquo;__init__&rsquo;, &lsquo;__iter__&rsquo;, &lsquo;__le__&rsquo;, &lsquo;__len__&rsquo;, &lsquo;__lt__&rsquo;, &lsquo;__mul__&rsquo;, &lsquo;__ne__&rsquo;, &lsquo;__new__&rsquo;, &lsquo;__reduce__&rsquo;, &lsquo;__reduce_ex__&rsquo;, &lsquo;__repr__&rsquo;, &lsquo;__reversed__&rsquo;, &lsquo;__rmul__&rsquo;, &lsquo;__setattr__&rsquo;, &lsquo;__setitem__&rsquo;, &lsquo;__setslice__&rsquo;, &lsquo;__sizeof__&rsquo;, &lsquo;__str__&rsquo;, &lsquo;__subclasshook__&rsquo;, &lsquo;append&rsquo;, &lsquo;count&rsquo;, &lsquo;extend&rsquo;, &lsquo;index&rsquo;, &lsquo;insert&rsquo;, &lsquo;pop&rsquo;, &lsquo;remove&rsquo;, &lsquo;reverse&rsquo;, &lsquo;sort&rsquo;]

12. 簡化 if 語句

我們可以使用下面的方式來驗證多個值:

if m in [1,3,5,7]:

而不是:

if m==1 or m==3 or m==5 or m==7:

或者,對于 in 操作符我們也可以使用 &lsquo;{1,3,5,7}&rsquo; 而不是 &lsquo;[1,3,5,7]&rsquo;,因為 set 中取元素是 O(1) 操作。

13. 一行代碼計算任何數的階乘

Python 2.x.

result= (lambdak: reduce(int.__mul__,range(1,k+1),1))(3)print(result)#-> 6

Python 3.x.

import functoolsresult= (lambdak: functools.reduce(int.__mul__,range(1,k+1),1))(3)print(result)#-> 6

14. 找到列表中出現最頻繁的數

test= [1,2,3,4,2,2,3,1,4,4,4]print(max(set(test),key=test.count))#-> 4

15. 重置遞歸限制

Python 限制遞歸次數到 1000,我們可以重置這個值:

import sysx=1001print(sys.getrecursionlimit())sys.setrecursionlimit(x)print(sys.getrecursionlimit())#1-> 1000#2-> 1001

請只在必要的時候采用上面的技巧。

16. 檢查一個對象的內存使用

在 Python 2.7 中,一個 32 比特的整數占用 24 字節,在 Python 3.5 中利用 28 字節。為確定內存使用,我們可以調用 getsizeof 方法:

在 Python 2.7 中

import sysx=1print(sys.getsizeof(x))#-> 24

在 Python 3.5 中

import sysx=1print(sys.getsizeof(x))#-> 28

17. 使用 __slots__ 來減少內存開支

你是否注意到你的 Python 應用占用許多資源特別是內存?有一個技巧是使用 __slots__ 類變量來在一定程度上減少內存開支。

import sysclassFileSystem(object):def __init__(self,files,folders,devices):self.files= filesself.folders= foldersself.devices= devicesprint(sys.getsizeof(FileSystem))classFileSystem1(object):__slots__= [&lsquo;files&rsquo;,&rsquo;folders&rsquo;,&rsquo;devices&rsquo;]def __init__(self,files,folders,devices):self.files= filesself.folders= foldersself.devices= devicesprint(sys.getsizeof(FileSystem1))#In Python 3.5#1-> 1016#2-> 888

很明顯,你可以從結果中看到確實有內存使用上的節省,但是你只應該在一個類的內存開銷不必要得大時才使用 __slots__。只在對應用進行性能分析后才使用它,不然地話,你只是使得代碼難以改變而沒有真正的益處。

【譯者注:在我的 win10 python2.7 中上面的結果是:

#In Python 2.7 win10#1-> 896#2-> 1016

所以,這種比較方式是不那么讓人信服的,使用 __slots__ 主要是用以限定對象的屬性信息,另外,當生成對象很多時花銷可能會小一些,具體可以參見 python 官方文檔:

The slots declaration takes a sequence of instance variables and reserves just enough space in each instance to hold a value for each variable. Space is saved because dict is not created for each instance. 】

18. 使用 lambda 來模仿輸出方法

import syslprint=lambda *args:sys.stdout.write(” “.join(map(str,args)))lprint(“python”,”tips”,1000,1001)#-> python tips 1000 1001

19.從兩個相關的序列構建一個字典

t1= (1,2,3)t2= (10,20,30)print(dict(zip(t1,t2)))#-> {1: 10, 2: 20, 3: 30}

20. 一行代碼搜索字符串的多個前后綴

print(“http://www.google.com”.startswith((“http://”,”https://”)))print(“http://www.google.co.uk”.endswith((“.com”,”.co.uk”)))#1-> True#2-> True

21. 不使用循環構造一個列表

import itertoolstest= [[-1,-2],[30,40],[25,35]]print(list(itertools.chain.from_iterable(test)))#-> [-1, -2, 30, 40, 25, 35]

22. 在 Python 中實現一個真正的 switch-case 語句

下面的代碼使用一個字典來模擬構造一個 switch-case。

def xswitch(x):returnxswitch._system_dict.get(x,None)xswitch._system_dict= {&lsquo;files&rsquo;: 10,&rsquo;folders&rsquo;: 5,&rsquo;devices&rsquo;: 2}print(xswitch(&lsquo;default&rsquo;))print(xswitch(&lsquo;devices&rsquo;))#1-> None#2-> 2

“Python有什么編程技巧”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

武乡县| 通州市| 乌兰浩特市| 武川县| 芜湖市| 河曲县| 布拖县| 邵阳市| 北辰区| 潮州市| 朝阳区| 崇仁县| 永福县| 个旧市| 绥芬河市| 冕宁县| 三江| 新乐市| 南靖县| 丹巴县| 蓬溪县| 九寨沟县| 涟源市| 吴川市| 天门市| 邵东县| 乐安县| 饶平县| 竹溪县| 姜堰市| 循化| 彭州市| 博爱县| 拜泉县| 富川| 偃师市| 栾城县| 淮阳县| 甘泉县| 白山市| 成武县|