>> abs(9.8) 9.8 >>> abs(-9.8) 9.8 2.dic()變?yōu)樽值漕愋?>>> dict({ key : value }) { key : value } 3.help()顯示幫助信息 >>> help(map) H..."/>
溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

python內(nèi)置方法

發(fā)布時(shí)間:2020-08-01 05:30:24 來源:網(wǎng)絡(luò) 閱讀:468 作者:DevOperater 欄目:編程語言

1.abs取絕對(duì)值

>>> abs(9.8)
9.8
>>> abs(-9.8)
9.8

2.dic()變?yōu)樽值漕愋?/h4>
>>> dict({"key":"value"})
{'key': 'value'}

3.help()顯示幫助信息

>>> help(map)
Help on class map in module builtins:

class map(object)
 |  map(func, *iterables) --> map object
 |
 |  Make an iterator that computes the function using arguments from
-- More  --

4.min取數(shù)據(jù)中的最小值,max取數(shù)據(jù)中的最大值

print(min([3, 4, 2]))
print(min("wqeqwe"))
print(min((3, 6, 4)))
print(max([3, 4, 2]))
print(max("wqeqwe"))
print(max((3, 6, 4)))
E:\PythonProject\python-test\venvP3\Scripts\python.exe E:/PythonProject/python-test/BasicGrammer/test.py
2
e
3
4
w
6

Process finished with exit code 0

5.all()所有的為true,才返回true??盏牧斜矸祷豻rue

print(all([1, 2, 0]))  # 列表中的0是False,所以返回False
print(all([1, 2, 5]))  # 列表中的所有值都是True,所以返回True
print(all([]))  # 空的列表,all()返回true
print(help(all))
E:\PythonProject\python-test\venvP3\Scripts\python.exe E:/PythonProject/python-test/BasicGrammer/test.py
False
True
True
Help on built-in function all in module builtins:

all(iterable, /)
    Return True if bool(x) is True for all values x in the iterable.

    If the iterable is empty, return True.

None

Process finished with exit code 0

6.any()任意一個(gè)為true就返回true??盏牧斜矸祷豧alse

any()列表中的任意一個(gè)為True,就返回True

print(any([1, 2, 0]))  
print(any([1, 2, 5]))  # 列表中的任意一個(gè)是True,就返回True
print(any([]))  # 空的列表,any()返回false
print(help(any))
E:\PythonProject\python-test\venvP3\Scripts\python.exe E:/PythonProject/python-test/BasicGrammer/test.py
True
True
False
Help on built-in function any in module builtins:

any(iterable, /)
    Return True if bool(x) is True for any x in the iterable.

    If the iterable is empty, return False.

None

Process finished with exit code 0

7.dir()打印當(dāng)前程序的所有變量

print(dir())  # 打印當(dāng)前程序的所有變量
E:\PythonProject\python-test\venvP3\Scripts\python.exe E:/PythonProject/python-test/BasicGrammer/test.py
['__annotations__', '__builtins__', '__cached__', '__doc__', '__file__', '__loader__', '__name__', '__package__', '__spec__']

Process finished with exit code 0

8.hex()把十進(jìn)制數(shù)轉(zhuǎn)換為16進(jìn)制數(shù)

hex()轉(zhuǎn)換為16進(jìn)制
print(hex(16))  
E:\PythonProject\python-test\venvP3\Scripts\python.exe E:/PythonProject/python-test/BasicGrammer/test.py
0x10

Process finished with exit code 0

9.slice()切片

>>> l = [2,3,4,5,6,7]
>>> s = slice(1,5,2)
>>> l(s)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: 'list' object is not callable
>>> l[s]
[3, 5]

10.divmod()求商和余數(shù)

>>> divmod(10,3)
(3, 1)
>>> divmod(10,2)
(5, 0)
>>>

11.sorted()排序

>>> sorted([1,9,4])
[1, 4, 9]

d = {1: 0, 10: 4, 9: 2, 15: 3}
print(d.items())
print(sorted(d.items(), key=lambda x: x[1], reverse=True))

E:\PythonProject\python-test\venvP3\Scripts\python.exe E:/PythonProject/python-test/BasicGrammer/test.py
dict_items([(1, 0), (10, 4), (9, 2), (15, 3)])
[(10, 4), (15, 3), (9, 2), (1, 0)]

Process finished with exit code 0

13.ascii()轉(zhuǎn)換為ascii碼

>>> ascii("qwqw我")
"'qwqw\\u6211'"

14.oct()十進(jìn)制數(shù)轉(zhuǎn)換為8進(jìn)制數(shù)

>>> print(oct(8))
0o10

15.bin()十進(jìn)制數(shù)轉(zhuǎn)換為二進(jìn)制數(shù)

>>> print(bin(10))
0b1010

16.eval()把字符轉(zhuǎn)換為里面原有的含義,把字符串轉(zhuǎn)換為代碼

print(eval("{1:2}"))
E:\PythonProject\python-test\venvP3\Scripts\python.exe E:/PythonProject/python-test/BasicGrammer/test.py
{1: 2}

Process finished with exit code 0

print(eval("1+2*3"))
E:\PythonProject\python-test\venvP3\Scripts\python.exe E:/PythonProject/python-test/BasicGrammer/test.py
7

Process finished with exit code 0

eval('print("hello")')
E:\PythonProject\python-test\venvP3\Scripts\python.exe E:/PythonProject/python-test/BasicGrammer/test.py
hello

Process finished with exit code 0

eval()只能解析單行代碼,不能解析多行的代碼
code = '''
if 3 > 2:
    print("3>2")
'''
eval(code)
E:\PythonProject\python-test\venvP3\Scripts\python.exe E:/PythonProject/python-test/BasicGrammer/test.py
Traceback (most recent call last):
  File "E:/PythonProject/python-test/BasicGrammer/test.py", line 9, in <module>
    eval(code)
  File "<string>", line 2
    if 3 > 2:
     ^
SyntaxError: invalid syntax

Process finished with exit code 1

17.exec()可以解析執(zhí)行多行代碼,但是獲取不到函數(shù)的返回值,eval()可以

code = '''
if 3 > 2:
    print("3>2")
'''
exec(code)
E:\PythonProject\python-test\venvP3\Scripts\python.exe E:/PythonProject/python-test/BasicGrammer/test.py
3>2

Process finished with exit code 0

code = '''

def foo():
    if 3 > 2:
        print("3>2")
        return 3
foo()
'''
re_exec = exec(code)
print(re_exec)
E:\PythonProject\python-test\venvP3\Scripts\python.exe E:/PythonProject/python-test/BasicGrammer/test.py
3>2
None

Process finished with exit code 0

print(eval("1+2+3"))
print(exec("1+2+3"))
E:\PythonProject\python-test\venvP3\Scripts\python.exe E:/PythonProject/python-test/BasicGrammer/test.py
6
None

Process finished with exit code 0

18.ord()獲取對(duì)應(yīng)的ascii碼表中的值。chr()獲取ascii表中對(duì)應(yīng)的字符

ord() 獲取對(duì)應(yīng)的ascii碼表中的值
chr() 獲取ascii表中值對(duì)應(yīng)的字符
>>> ord("a")
97
>>> chr(97)
'a'

19.sum()求和

>>> sum((1,2,3))
6
>>> sum([1,2,3])
6
>>> sum({1:2,3:4})
4
>>> sum({1,2,3,4})
10
>>> sum("123")
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: unsupported operand type(s) for +: 'int' and 'str'
>>>

20.bytearray()可通過encode,decode之后,通過index來修改字符串中的值

>>> s = "woai中國"
>>> s[0] = "W"
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: 'str' object does not support item assignment
>>> s = bytearray(s)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: string argument without an encoding
>>> s = s.encode('utf-8')
>>> s
b'woai\xe4\xb8\xad\xe5\x9b\xbd'
>>> s = bytearray(s)
>>> s
bytearray(b'woai\xe4\xb8\xad\xe5\x9b\xbd')
>>> s[0]='W'
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: an integer is required
>>> s[0]=97
>>> s
bytearray(b'aoai\xe4\xb8\xad\xe5\x9b\xbd')
>>> s.decode('utf-8')
'aoai中國'

21.id()查看變量的內(nèi)存地址

>>> id(s[0])  # s[0]的內(nèi)存地址會(huì)變
1487327920
>>> s[0]=66
>>> id(s[0])
1487326928
>>> id(s)
2879739806752  # s的內(nèi)存地址是不變的
>>> s[0]=67
>>> id(s)
2879739806752

22.map()通過匿名函數(shù)lambda來對(duì)列表中的數(shù)據(jù)進(jìn)行操作

map()
>>> list(map(lambda x:x*x,[1,2,3]))
[1, 4, 9]
filter()
>>> list(filter(lambda x:x>3,[1,2,3,4,5]))
[4, 5]

23.reduce()對(duì)數(shù)據(jù)進(jìn)行整合操作,返回一個(gè)值

>>> import functools
>>> functools.reduce(lambda x,y:x+y,[1,2,3,4])
10
>>> functools.reduce(lambda x,y:x*y,[1,2,3,4])
24
>>> functools.reduce(lambda x,y:x*y,[1,2,3,4],2)
48
>>> functools.reduce(lambda x,y:x*y,[1,2,3,4],3)
72
>>> functools.reduce(lambda x,y:x+y,[1,2,3,4],3)
13

24.print()

def print(self, *args, sep=' ', end='\n', file=None): # known special case of print
    """
    print(value, ..., sep=' ', end='\n', file=sys.stdout, flush=False)

    Prints the values to a stream, or to sys.stdout by default.
    Optional keyword arguments:
    file:  a file-like object (stream); defaults to the current sys.stdout.
    sep:   string inserted between values, default a space.
    end:   string appended after the last value, default a newline.
    flush: whether to forcibly flush the stream.
    """
    pass

#!/usr/bin/env python
# -*- coding:utf-8 -*-
# Author: vita

msg = "msg"
# 文件的模式必須是可寫入模式(w,r+),不能是只讀模式
f = open(file="寫文件.txt", mode="w", encoding="utf-8")
print(msg, "my input", sep="|", end=":::",file=f)

運(yùn)行程序
E:\PythonProject\python-test\venvP3\Scripts\python.exe E:/PythonProject/python-test/BasicGrammer/test.py

Process finished with exit code 0

查看"寫文件.txt"
msg|my input:::

25.tupple()把可迭代的數(shù)據(jù)類型變?yōu)樵M

>>> a = [1,2,3]
>>> tuple(a)
(1, 2, 3)
>>> tuple("1,2,3")
('1', ',', '2', ',', '3')
>>> tuple({1:2})
(1,)
>>> tuple(2)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: 'int' object is not iterable

26.callable()判斷是否可調(diào)用,即通過abs()方式調(diào)用,函數(shù)是可調(diào)用的,可用于判斷是否是函數(shù)

callable()判斷是否可調(diào)用,即通過abc()方式調(diào)用
函數(shù)是可調(diào)用的,可用于判斷是否是函數(shù)
>>> callable(abs)
True
>>> callable(list)
True
>>> callable([1,2,3])
False

27.frozenset()變?yōu)椴豢勺兗?/h4>
>>> s = frozenset({1,2,3})
>>> s.discard(2)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: 'frozenset' object has no attribute 'discard'

28.vars()包含變量的名和變量的值,dir()只是變量的名字

>>> vars()
{'__name__': '__main__', '__doc__': None, '__package__': None, '__loader__': <class '_frozen_import
lib.BuiltinImporter'>, '__spec__': None, '__annotations__': {}, '__builtins__': <module 'builtins'
(built-in)>, 'l': [2, 3, 4, 5, 6, 7], 's': bytearray(b'aoaini'), 'd': {10: 2, 12: 1, 9: 0}, 'a': [1
, 2, 3]}
['__annotations__', '__builtins__', '__doc__', '__loader__', '__name__', '__package__', '__spec__',
 'a', 'd', 'l', 's']

>>>

29.locals()打印局部變量,globals()打印全局變量

>>> globals()
{'__name__': '__main__', '__doc__': None, '__package__': None, '__loader__': <class '_frozen_import
lib.BuiltinImporter'>, '__spec__': None, '__annotations__': {}, '__builtins__': <module 'builtins' (built-in)>, 'l': [2, 3, 4, 5, 6, 7], 's': bytearray(b'aoaini'), 'd': {10: 2, 12: 1, 9: 0}, 'a': [1, 2,
 3]}
>>> locals()
{'__name__': '__main__', '__doc__': None, '__package__': None, '__loader__': <class '_frozen_importlib.BuiltinImporter'>, '__spec__': None, '__annotations__': {}, '__builtins__': <module 'builtins' (bui
lt-in)>, 'l': [2, 3, 4, 5, 6, 7], 's': bytearray(b'aoaini'), 'd': {10: 2, 12: 1, 9: 0}, 'a': [1, 2, 3]}
>>>

30.repr顯示形式變?yōu)樽址?/h4>
>>> repr(abs(23))
'23'
>>> repr(frozenset({12,4}))
'frozenset({12, 4})'
>>> repr({1,2,3})
'{1, 2, 3}'
>>>

31.zip

>>> a = [1,2,3,4,5]
>>> b = ["a","b","c"]
>>> zip(a)
<zip object at 0x00000237FF9EAF08>
>>> zip(a,b)
<zip object at 0x00000237FF9D8448>
>>> list(zip(a,b))
[(1, 'a'), (2, 'b'), (3, 'c')]
>>> dict(zip(a,b))
{1: 'a', 2: 'b', 3: 'c'}
>>> str(zip(a,b))
'<zip object at 0x00000237FF9EAF08>'
>>> tuple(zip(a,b))
((1, 'a'), (2, 'b'), (3, 'c'))
>>>

32.complex()變?yōu)閺?fù)數(shù)

>>> complex(3,5)
(3+5j)
>>> complex(3)
(3+0j)

33.round()保留幾位小數(shù)位

>>> round(3.12123333333334444445555555555555555,18)
3.1212333333333446
>>> round(3.12123333333334444445555555555555555,2)
3.12

34.hash()把字符串變?yōu)楣潭ㄩL度的hash值

不可變數(shù)據(jù)類型才是可hash的,包含整數(shù),字符串,元組,都是不可變的,是可hash的
>>> hash("12")
8731980002792086209
>>> hash("123")
-1620719444414375290
>>> hash([1,2])
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: unhashable type: 'list'
>>> hash(1)
1
>>> hash(123)
123
>>> hash((1,2))
3713081631934410656
>>> hash((1,2,3))
2528502973977326415
>>> hash({1,2,3})
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: unhashable type: 'set'
>>>

35.set()把可迭代對(duì)象變?yōu)榧霞?/h4>
>>> set([1,2,3])
{1, 2, 3}
>>> set((1,2,3))
{1, 2, 3}
>>> set("21")
{'1', '2'}
>>> set(2)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: 'int' object is not iterable
>>> set({1:2,3:4})
{1, 3}
>>>

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI