1. python3 有多少內置函數
我剛剛數了下Python3.x一共有153個內置函數
具體如下:
['ArithmeticError', 'AssertionError', 'AttributeError', 'BaseException', 'BlockingIOError', 'BrokenPipeError', 'BufferError', 'BytesWarning', 'ChildProcessError', 'ConnectionAbortedError', 'ConnectionError', 'ConnectionRefusedError', 'ConnectionResetError', 'DeprecationWarning', 'EOFError', 'Ellipsis', 'EnvironmentError', 'Exception', 'False', 'FileExistsError', 'FileNotFoundError', 'FloatingPointError', 'FutureWarning', 'GeneratorExit', 'IOError', 'ImportError', 'ImportWarning', 'IndentationError', 'IndexError', 'InterruptedError', 'IsADirectoryError', 'KeyError', 'KeyboardInterrupt', 'LookupError', 'MemoryError', 'MoleNotFoundError', 'NameError', 'None', 'NotADirectoryError', 'NotImplemented', 'NotImplementedError', 'OSError', 'OverflowError', 'PendingDeprecationWarning', 'PermissionError', 'ProcessLookupError', 'RecursionError', 'ReferenceError', 'ResourceWarning', 'RuntimeError', 'RuntimeWarning', 'StopAsyncIteration', 'StopIteration', 'SyntaxError', 'SyntaxWarning', 'SystemError', 'SystemExit', 'TabError', 'TimeoutError', 'True', 'TypeError', 'UnboundLocalError', 'UnicodeDecodeError', 'UnicodeEncodeError', 'UnicodeError', 'UnicodeTranslateError', 'UnicodeWarning', 'UserWarning', 'ValueError', 'Warning', 'WindowsError', 'ZeroDivisionError', '_', '__build_class__', '__debug__', '__doc__', '__import__', '__loader__', '__name__', '__package__', '__spec__', 'abs', 'all', 'any', 'ascii', 'bin', 'bool', 'bytearray', 'bytes', 'callable', 'chr', 'classmethod', 'compile', 'complex', 'right', 'credits', 'delattr', 'dict', 'dir', 'divmod', 'enumerate', 'eval', 'exec', 'exit', 'filter', 'float', 'format', 'frozenset', 'getattr', 'globals', 'hasattr', 'hash', 'help', 'hex', 'id', 'input', 'int', 'isinstance', 'issubclass', 'iter', 'len', 'license', 'list', 'locals', 'map', 'max', 'memoryview', 'min', 'next', 'object', 'oct', 'open', 'ord', 'pow', 'print', 'property', 'quit', 'range', 'repr', 'reversed', 'round', 'set', 'setattr', 'slice', 'sorted', 'staticmethod', 'str', 'sum', 'super', 'tuple', 'type', 'vars', 'zip']
2. Python3的print函數
你這個只有把print 放在函數裡面,然後錄入函數 回車
比如:
def Print():
print('a')
print('b')
Print()
3. python3 file函數在哪個庫
>>>help(file)
Helponclassfileinmole__builtin__:
#可直接使用,無需導入模塊
4. python3 lambda表達式函數
lambda你可以理解為一個函數生成器,他返回的是一個函數,比如你代碼中的lambda x:x%n意思就是返回一個函數,這個函數的作用是算X%n的值.所以返回的return bk之後,bk成了一個函數這個函數接收一個參數X
我也剛學到這卡了,網上找的這個理解起來比較舒服一點
下面是自己總結的,運行也能成功。答案也是對的。。
_not_divisible(n)返回值是一個函數,這個函數接收一個(X)參數
_not_divisible(n)(X)
5. 關於python3.3函數定義的問題
寫在引號中的才表示原始文字
data_load("jame.txt")
如果直接寫就會當成變數處理,並沒有定義變數james,因此提示變數未定義
6. 太全了!Python3常用內置函數總結
數學相關
abs(a) : 求取絕對值。abs(-1)
max(list) : 求取list最大值。max([1,2,3])
min(list) : 求取list最小值。min([1,2,3])
sum(list) : 求取list元素的和。 sum([1,2,3]) >>> 6
sorted(list) : 排序,返回排序後的list。
len(list) : list長度,len([1,2,3])
divmod(a,b): 獲取商和余數。 divmod(5,2) >>> (2,1)
pow(a,b) : 獲取乘方數。pow(2,3) >>> 8
round(a,b) : 獲取指定位數的小數。a代表浮點數,b代表要保留的位數。round(3.1415926,2) >>> 3.14
range(a[,b]) : 生成一個a到b的數組,左閉右開。range(1,10) >>> [1,2,3,4,5,6,7,8,9]
類型轉換
int(str) : 轉換為int型。int('1') >>> 1
float(int/str) : 將int型或字元型轉換為浮點型。float('1') >>> 1.0
str(int) : 轉換為字元型。str(1) >>> '1'
bool(int) : 轉換為布爾類型。 str(0) >>> False str(None) >>> False
bytes(str,code) : 接收一個字元串,與所要編碼的格式,返回一個位元組流類型。bytes('abc', 'utf-8') >>> b'abc' bytes(u'爬蟲', 'utf-8') >>> b'xe7x88xacxe8x99xab'
list(iterable) : 轉換為list。 list((1,2,3)) >>> [1,2,3]
iter(iterable): 返回一個可迭代的對象。 iter([1,2,3]) >>> <list_iterator object at 0x0000000003813B00>
dict(iterable) : 轉換為dict。 dict([('a', 1), ('b', 2), ('c', 3)]) >>> {'a':1, 'b':2, 'c':3}
enumerate(iterable) : 返回一個枚舉對象。
tuple(iterable) : 轉換為tuple。 tuple([1,2,3]) >>>(1,2,3)
set(iterable) : 轉換為set。 set([1,4,2,4,3,5]) >>> {1,2,3,4,5} set({1:'a',2:'b',3:'c'}) >>> {1,2,3}
hex(int) : 轉換為16進制。hex(1024) >>> '0x400'
oct(int) : 轉換為8進制。 oct(1024) >>> '0o2000'
bin(int) : 轉換為2進制。 bin(1024) >>> '0b10000000000'
chr(int) : 轉換數字為相應ASCI碼字元。 chr(65) >>> 'A'
ord(str) : 轉換ASCI字元為相應的數字。 ord('A') >>> 65
相關操作
eval****() : 執行一個表達式,或字元串作為運算。 eval('1+1') >>> 2
exec() : 執行python語句。 exec('print("Python")') >>> Python
filter(func, iterable) : 通過判斷函數fun,篩選符合條件的元素。 filter(lambda x: x>3, [1,2,3,4,5,6]) >>> <filter object at 0x0000000003813828>
map(func, *iterable) : 將func用於每個iterable對象。 map(lambda a,b: a+b, [1,2,3,4], [5,6,7]) >>> [6,8,10]
zip(*iterable) : 將iterable分組合並。返回一個zip對象。 list(zip([1,2,3],[4,5,6])) >>> [(1, 4), (2, 5), (3, 6)]
type():返回一個對象的類型。
id(): 返回一個對象的唯一標識值。
hash(object):返回一個對象的hash值,具有相同值的object具有相同的hash值。 hash('python') >>> 7070808359261009780
help():調用系統內置的幫助系統。
isinstance():判斷一個對象是否為該類的一個實例。
issubclass():判斷一個類是否為另一個類的子類。
globals() : 返回當前全局變數的字典。
next(iterator[, default]) : 接收一個迭代器,返回迭代器中的數值,如果設置了default,則當迭代器中的元素遍歷後,輸出default內容。
reversed(sequence) : 生成一個反轉序列的迭代器。 reversed('abc') >>> ['c','b','a']
7. python3.0不支持file函數了嗎
是的,在python3中取消了file函數,但是可以使用open()來代替。
以下是在文檔中找到的說明:
In Python2 there is afiletype builtin. This is replaced with various file types in Python3. You commonly see code in Python2 that usesfile(pathname)which will fail in Python3. Replace this usage withopen(pathname).
If you need to test for types you can in Python3 check forio.IOBaseinstead offile.
open()的使用方法請查看文檔:open()文檔
8. 如何打開python3內置的函數說明
按住 ctrl 點擊函數名,不是點擊函數的參數
9. python3函數定義的格式問題
a:int表示傳入a的類型應該為int,->str表示return的類型為str
這類用法只起到注釋的作用,注釋對python解釋器沒有任何意義, 只是為了方便使用函數的人
10. python3入門之幾個函數變化
使用print時,也可以在語句中添加多個表達式,每個表達式用逗 號分隔;在用逗號分隔輸出時,print語句會在每個輸出項後面自動添加一 個空格;
注意:不管時字元串還是其他類型都是轉化為字元串進行列印!