# 61.max()
# 返回給定引數的最大值,引數可以為序列。
lst1 = (1, 2, 45, 6, 7, 64, 32, 14)
print(max(lst1))
# 62.memoryview()
# 返回給定引數的記憶體檢視物件
v = memoryview(bytearray('qwerty', 'utf-8'))
print(v[1])
print(v[-1])
# 63.repr()
# 將物件轉化為供直譯器讀取的形式。
str1 = 'hello world'
print(repr(str1))
# 64.reversed()
# 返回乙個反轉的迭代器。
str2 = 'hello world'
print(list(reversed(str2)))
tuple1 = ('d', 's', 'w', 'q', 'e', 't')
print(list(reversed(tuple1)))
range1 = range(10)
print(list(reversed(range1)))
lst2 = [2, 45, 6, 765, 4, 3, 2, 1, 34, 56, 543, ]
print(list(reversed(lst2)))
# 65.round()
# 返回浮點數x的四捨五入值。
num1 = 12.32
print(round(num1))
num2 = -124.325
print(round(num2))
num3 = 23.2324224
print(round(num3, 3)) # 保留三位小數
num4 = -3279.23378
print(round(num4, 3)) # 保留三位小數
# 66.set()
# 建立乙個無序不重複元素集,可進行關係測試,刪除重複資料,還可以計算交集、差集、並集等
set1 = set('hello world')
set2 = set('hello python')
print(set1 & set2)
print(set1 | set2)
print(set1 - set2)
# 67.vars()
# 返回物件object的屬性和屬性值的字典物件。
class a(object):
a = 1
b = 'str'
a = a()
print(vars(a))
# 68.zip()
# 將可迭代的物件作為引數,將物件中對應的元素打包成乙個個元組,然後返回由這些元組組成的物件,這樣做的好處是節約了不少的記憶體。
lst3 = [1, 2, 3]
lst4 = [4, 5, 6, 7]
lst5 = [8, 9, 10]
zip1 = zip(lst3, lst4)
print(list(zip1))
# 69._import_()
# 用於動態載入類和函式 。#
# 如果乙個模組經常變化就可以使用 __import__() 來動態載入。
# hello.py
import os
print('hello.py %s' % id(os))
# test.py
__import__('hello') # 載入檔案
要點: Python3內建函式
1 兩個列表可以相加 collections.counter計數器,計算列表中每項出現的次數,並返回字典型別,其中元素作為key,其計數作為value。當所訪問的鍵不存在時,返回0,而不是keyerror 否則返回它的計數。其中負號表示降序 預設公升序 與reverse true相同 4 數值的除法...
Python3 內建函式
返回乙個數的絕對值。實參可以是整數或浮點數。如果實參是乙個複數,返回它的模。返回 x 的 y 次冪 如果 z 存在,則對 z 取餘 比直接pow x,y z計算更高效 兩個引數形式的pow x,y 等價於冪運算子 x y。引數必須為數值型別。對於混用的運算元型別,則適用二元算術運算子的型別強制轉換規...
Python3 內建函式
abs 函式 函式返回 x 數字 的絕對值 python dict 函式 dict 函式用於建立乙個字典。dict 建立空字典 dict a a b b t t 傳入關鍵字 dict zip one two three 1,2,3 對映函式方式來構造字典 dict one 1 two 2 three...