python幫助說明

2021-09-19 23:39:36 字數 2249 閱讀 7953

用的了python寫指令碼,也只是理解後ctrl+s,**復用。當遇到陌生的模組的時候,如何查詢,一直是很模糊的概念。今天記錄點,也當時工具筆記了。

type(var_1)檢視var_1變數型別

help(var_1)error,應該是help(type(var_1)),只能檢視型別或者函式的幫助

>>> a='111'

>>> a

'111'

>>> help(a)

no python documentation found for '111'

>>> help(type(a))

help on class str in module __builtin__:

class str(basestring)

| str(object='') -> string

|-----------------------------

>>> help(split)

traceback (most recent call last):

file "", line 1, in nameerror: name 'split' is not defined

>>> help(str.split)

help on method_descriptor:

split(...)

s.split([sep [,maxsplit]]) -> list of strings

return a list of the words in the string s, using sep as the

delimiter string. if maxsplit is given, at most maxsplit

splits are done. if sep is not specified or is none, any

whitespace string is a separator and empty strings are removed

from the result.

dir(var_1)檢視var_1物件所有的方法

關於兩條下劃線的代表什麼意思,參見這篇python下劃線使用注意

疑問1:只有方法,沒有屬性麼

疑問2:為什麼有些加下劃線了,有些並沒有加上。

>>> dir(a)

['__add__', '__class__', '__contains__', '__delattr__', '__doc__', '__eq__', '__

format__', '__ge__', '__getattribute__', '__getitem__', '__getnewargs__', '__get

slice__', '__gt__', '__hash__', '__init__', '__le__', '__len__', '__lt__', '__mo

d__', '__mul__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__',

'__rmod__', '__rmul__', '__setattr__', '__sizeof__', '__str__', '__subclasshook

__', '_formatter_field_name_split', '_formatter_parser', 'capitalize', 'center',

'count', 'decode', 'encode', 'endswith', 'expandtabs', 'find', 'format', 'index

', 'isalnum', 'isalpha', 'isdigit', 'islower', 'isspace', 'istitle', 'isupper',

'join', 'ljust', 'lower', 'lstrip', 'partition', 'replace', 'rfind', 'rindex', '

rjust', 'rpartition', 'rsplit', 'rstrip', 'split', 'splitlines', 'startswith', '

strip', 'swapcase', 'title', 'translate', 'upper', 'zfill']

>>>

Nginx 幫助資訊說明

sbin nginx h nginx version nginx 1.12.2 usage nginx hvvttq s signal c filename p prefix g directives options h this help 顯示該幫助資訊 v show version and ex...

python輸出函式幫助 python幫助函式

一些幫助函式 2015年8月9日 14 09 exec print hello,world exec是乙個函式,而不是乙個語句。exec最有用的乙個部分 給它提供命名空間,可放置變數的地方。他能動態地建立 字串。如果字串是從其他地方獲得的,為安全起見,可增加乙個字典,起到命名空間的作用。命名空間 可...

EUnit eunit使用 幫助文件 說明介紹

一 eunit的幫助 二 eunit 三 eunit 測試分幾類 單元測試,函式級測試,整合測試,系統測試等 用eunit進行測試 首先要載入eunit模組 include lib eunit include eunit.hrl 載入這個之後要注意你這個模組裡所有以 test結尾的函式都被認為是測試...