免费视频淫片aa毛片_日韩高清在线亚洲专区vr_日韩大片免费观看视频播放_亚洲欧美国产精品完整版

打開(kāi)APP
userphoto
未登錄

開(kāi)通VIP,暢享免費(fèi)電子書(shū)等14項(xiàng)超值服

開(kāi)通VIP
Python 63個(gè)內(nèi)置函數(shù),你都o(jì)k嗎?

我正在梳理一個(gè)系列:Python 實(shí)用功能大盤(pán)點(diǎn),歡迎學(xué)習(xí)!目前已推送:

Python中14個(gè)切片操作,你常用哪幾個(gè)?

Python中 is, in, ==,你Ok嗎?

Python列表生成式12個(gè)小功能,你常用哪幾個(gè)?

Python一共有60多個(gè)內(nèi)置函數(shù),今天先梳理其中35 個(gè)

1 abs()

絕對(duì)值或復(fù)數(shù)的模

In [1]: abs(-6)
Out[1]: 6

2 all()  

接受一個(gè)迭代器,如果迭代器的所有元素都為真,那么返回True,否則返回False

In [2]: all([1,0,3,6])
Out[2]: False

In [3]: all([1,2,3])
Out[3]: True

3 any()  

接受一個(gè)迭代器,如果迭代器里有一個(gè)元素為真,那么返回True,否則返回False

In [4]: any([0,0,0,[]])
Out[4]: False

In [5]: any([0,0,1])
Out[5]: True

4 ascii()  

調(diào)用對(duì)象的repr() 方法,獲得該方法的返回值

In [30]: class Student():
    ...:     def __init__(self,id,name):
    ...:         self.id = id
    ...:         self.name = name
    ...:     def __repr__(self):
    ...:         return 'id = '+self.id +', name = '+self.name

In [33]: print(xiaoming)
id = 001, name = xiaoming

In [34]: ascii(xiaoming)
Out[34]: 'id = 001, name = xiaoming'

5  bin()

將十進(jìn)制轉(zhuǎn)換為二進(jìn)制

In [35]: bin(10)
Out[35]: '0b1010'

6 oct()

將十進(jìn)制轉(zhuǎn)換為八進(jìn)制

In [36]: oct(9)
Out[36]: '0o11'

7 hex()

將十進(jìn)制轉(zhuǎn)換為十六進(jìn)制

In [37]: hex(15)
Out[37]: '0xf'

8 bool()  

測(cè)試一個(gè)對(duì)象是True, 還是False.

In [38]: bool([0,0,0])
Out[38]: True

In [39]: bool([])
Out[39]: False

In [40]: bool([1,0,1])
Out[40]: True

9 bytes()  

將一個(gè)字符串轉(zhuǎn)換成字節(jié)類(lèi)型

In [44]: s = 'apple'

In [45]: bytes(s,encoding='utf-8')
Out[45]: b'apple'

10 str()  

字符類(lèi)型、數(shù)值類(lèi)型等轉(zhuǎn)換為字符串類(lèi)型

In [46]: integ = 100

In [47]: str(integ)
Out[47]: '100'

11 callable()  

判斷對(duì)象是否可以被調(diào)用,能被調(diào)用的對(duì)象就是一個(gè)callable 對(duì)象,比如函數(shù) str, int 等都是可被調(diào)用的,但是例子4 中xiaoming這個(gè)實(shí)例是不可被調(diào)用的:

In [48]: callable(str)
Out[48]: True

In [49]: callable(int)
Out[49]: True

In [50]: xiaoming
Out[50]: id = 001, name = xiaoming

In [51]: callable(xiaoming)
Out[51]: False

12 chr()

查看十進(jìn)制整數(shù)對(duì)應(yīng)的ASCII字符

In [54]: chr(65)
Out[54]: 'A'

13 ord()

查看某個(gè)ascii對(duì)應(yīng)的十進(jìn)制數(shù)

In [60]: ord('A')
Out[60]: 65

14 classmethod()  

classmethod 修飾符對(duì)應(yīng)的函數(shù)不需要實(shí)例化,不需要 self 參數(shù),但第一個(gè)參數(shù)需要是表示自身類(lèi)的 cls 參數(shù),可以來(lái)調(diào)用類(lèi)的屬性,類(lèi)的方法,實(shí)例化對(duì)象等。

In [66]: class Student():
    ...:     def __init__(self,id,name):
    ...:         self.id = id
    ...:         self.name = name
    ...:     def __repr__(self):
    ...:         return 'id = '+self.id +', name = '+self.name
    ...:     @classmethod
    ...:     def f(cls):
    ...:         print(cls)

15 complie()  

將字符串編譯成python 能識(shí)別或可以執(zhí)行的代碼,也可以將文字讀成字符串再編譯。

In [74]: s  = 'print('helloworld')'

In [75]: r = compile(s,'<string>', 'exec')

In [76]: r
Out[76]: <code object <module> at 0x0000000005DE75D0, file '<string>', line 1>

In [77]: exec(r)
helloworld

16  complex()

創(chuàng)建一個(gè)復(fù)數(shù)

In [81]: complex(1,2)
Out[81]: (1+2j)

17 delattr()  

刪除對(duì)象的屬性

In [87]: delattr(xiaoming,'id')

In [88]: hasattr(xiaoming,'id')
Out[88]: False

18 dict()  

創(chuàng)建數(shù)據(jù)字典

In [92]: dict()
Out[92]: {}

In [93]: dict(a='a',b='b')
Out[93]: {'a': 'a', 'b': 'b'}

In [94]: dict(zip(['a','b'],[1,2]))
Out[94]: {'a': 1, 'b': 2}

In [95]: dict([('a',1),('b',2)])
Out[95]: {'a': 1, 'b': 2}

19 dir()  

不帶參數(shù)時(shí)返回當(dāng)前范圍內(nèi)的變量,方法和定義的類(lèi)型列表;帶參數(shù)時(shí)返回參數(shù)的屬性,方法列表。

In [96]: dir(xiaoming)
Out[96]:
['__class__',
 '__delattr__',
 '__dict__',
 '__dir__',
 '__doc__',
 '__eq__',
 '__format__',
 '__ge__',
 '__getattribute__',
 '__gt__',
 '__hash__',
 '__init__',
 '__init_subclass__',
 '__le__',
 '__lt__',
 '__module__',
 '__ne__',
 '__new__',
 '__reduce__',
 '__reduce_ex__',
 '__repr__',
 '__setattr__',
 '__sizeof__',
 '__str__',
 '__subclasshook__',
 '__weakref__',

 'name']

20 divmod()  

分別取商和余數(shù)

In [97]: divmod(10,3)
Out[97]: (3, 1)

21 enumerate()  

返回一個(gè)可以枚舉的對(duì)象,該對(duì)象的next()方法將返回一個(gè)元組。

In [98]: s = ['a','b','c']
    ...: for i ,v in enumerate(s,1):
    ...:     print(i,v)
    ...:
1 a
2 b
3 c

22 eval()  

將字符串str 當(dāng)成有效的表達(dá)式來(lái)求值并返回計(jì)算結(jié)果;取出字符串中內(nèi)容

In [99]: s = '1 + 3 +5'
    ...: eval(s)
    ...:
Out[99]: 9

23 exec()  

執(zhí)行字符串或complie方法編譯過(guò)的字符串,沒(méi)有返回值

In [74]: s  = 'print('helloworld')'

In [75]: r = compile(s,'<string>', 'exec')

In [76]: r
Out[76]: <code object <module> at 0x0000000005DE75D0, file '<string>', line 1>

In [77]: exec(r)
helloworld

24 filter()  

過(guò)濾器,構(gòu)造一個(gè)序列,等價(jià)于

[ item for item in iterables if function(item)]

在函數(shù)中設(shè)定過(guò)濾條件,逐一循環(huán)迭代器中的元素,將返回值為T(mén)rue時(shí)的元素留下,形成一個(gè)filter類(lèi)型數(shù)據(jù)。

In [101]: fil = filter(lambda x: x>10,[1,11,2,45,7,6,13])

In [102]: list(fil)
Out[102]: [11, 45, 13]

25 float()  

將一個(gè)字符串或整數(shù)轉(zhuǎn)換為浮點(diǎn)數(shù)

In [103]: float(3)
Out[103]: 3.0

26 format()  

格式化輸出字符串,format(value, format_spec)實(shí)質(zhì)上是調(diào)用了value的format(format_spec)方法。

In [104]: print('i am {0},age{1}'.format('tom',18))
i am tom,age18

27 frozenset()  

創(chuàng)建一個(gè)不可修改的集合。

In [105]: frozenset([1,1,3,2,3])
Out[105]: frozenset({1, 2, 3})

28 getattr()  

獲取對(duì)象的屬性

In [106]: getattr(xiaoming,'name')
Out[106]: 'xiaoming'

29 globals()  

返回一個(gè)描述當(dāng)前全局變量的字典

30 hasattr()

In [110]: hasattr(xiaoming,'name')
Out[110]: True

In [111]: hasattr(xiaoming,'id')
Out[111]: False

31 hash()  

返回對(duì)象的哈希值

In [112]: hash(xiaoming)
Out[112]: 6139638

32 help()  

返回對(duì)象的幫助文檔

In [113]: help(xiaoming)
Help on Student in module __main__ object:

class Student(builtins.object)
 |  Methods defined here:
 |
 |  __init__(self, id, name)
 |
 |  __repr__(self)
 |
 |  ----------------------------------------------------------------------
 |  Data descriptors defined here:
 |
 |  __dict__
 |      dictionary for instance variables (if defined)
 |
 |  __weakref__
 |      list of weak references to the object (if defined)

33 id()  

返回對(duì)象的內(nèi)存地址

In [115]: id(xiaoming)
Out[115]: 98234208

34 input()  

獲取用戶(hù)輸入內(nèi)容

In [116]: input()
aa
Out[116]: 'aa'

35  int()  

int(x, base =10) , x可能為字符串或數(shù)值,將x 轉(zhuǎn)換為一個(gè)普通整數(shù)。如果參數(shù)是字符串,那么它可能包含符號(hào)和小數(shù)點(diǎn)。如果超出了普通整數(shù)的表示范圍,一個(gè)長(zhǎng)整數(shù)被返回。

In [120]: int('12',16)
Out[120]: 18 
本站僅提供存儲(chǔ)服務(wù),所有內(nèi)容均由用戶(hù)發(fā)布,如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊舉報(bào)。
打開(kāi)APP,閱讀全文并永久保存 查看更多類(lèi)似文章
猜你喜歡
類(lèi)似文章
整理了60個(gè)Python小例子,拿來(lái)即用!
python
全網(wǎng)目前最全python例子(附源碼)
Python 內(nèi)置函數(shù)最全匯總,現(xiàn)看現(xiàn)用
Python入門(mén),一定要吃透這69個(gè)內(nèi)置函數(shù)
Python 內(nèi)置函數(shù)速查手冊(cè)(函數(shù)大全,帶示例)
更多類(lèi)似文章 >>
生活服務(wù)
分享 收藏 導(dǎo)長(zhǎng)圖 關(guān)注 下載文章
綁定賬號(hào)成功
后續(xù)可登錄賬號(hào)暢享VIP特權(quán)!
如果VIP功能使用有故障,
可點(diǎn)擊這里聯(lián)系客服!

聯(lián)系客服