Dir和help是Python中兩個強大的內置函數。就像Linux中的man壹樣,它們絕對是開發的好幫手,比如檢查list的所有屬性:
目錄(列表)輸出:
['__add__ ',' __class__ ',' __contains__ ',' __delattr__ ',' __delslice__ ',' __doc__ ',' __eq__ ',' __format__ ',' __ge__ ',' __getattribute__ ',' __getitem__ ',' __getslice__ ',' __gt__ ',' __hash__ ',' __iadd__ ',' __
然後檢查列表的pop方法的功能和用法:
幫助(list.pop)輸出:
method_descriptor的幫助:
波普(...)l . pop([index])-& gt;item -移除並返回索引處的項目(默認為最後壹項)。
如果列表為空或索引超出範圍,則引發IndexError。