對於我這樣的初學者,大概沒有比在程式設計中能夠快速查詢幫助文件更重要的事情了。
在python命令列的程式設計環境中,查詢類結構可以通過以下命令
import math
dir(math)
['__doc__', '__name__', '__package__', 'acos', 'acosh', 'asin', 'asinh', 'atan', 'atan2', 'atanh', 'ceil', 'copysign', 'cos', 'cosh', 'degrees', 'e', 'erf', 'erfc', 'exp', 'expm1', 'fabs', 'factorial', 'floor', 'fmod', 'frexp', 'fsum', 'gamma', 'hypot', 'isinf', 'isnan', 'ldexp', 'lgamma', 'log', 'log10', 'log1p', 'modf', 'pi', 'pow', 'radians', 'sin', 'sinh', 'sqrt', 'tan', 'tanh', 'trunc']
math.ceil.__doc__
'ceil(x)\n\nreturn the ceiling of x as a float.\nthis is the smallest integral value >= x.'
help(math.pow)
help on built-in function pow in module math:
pow(...)
pow(x, y)
return x**y (x to the power of y).
dir(math):顯示math這個類的結構,包含的變數和方法
math.ceil.__doc__:ceil方法的介紹(英文兩道下劃線)
help(math.pow):pow方法的實現**
python用法技巧 python使用技巧 一
一 plt繪製條形圖 importmatplotlib.pyplot as pltimport matplotlib 引入 設定label list 2014 2015 2016 2017 橫座標刻度顯示值 num list1 20,30,15,35 縱座標值1 rects1 plt.bar ran...
Android studio 檢視類結構快捷鍵
選中類 按下f4,可以開啟類的源 在 eclipse 中我們可以使用 ctrl o 組合熱鍵檢視類的結構,android studio 中也可以做到。view tool windows structure 快捷鍵 windows alt 7 mac cmd 7 或者如下圖直接選擇 structure...
Python 使用技巧
開啟本地伺服器,監聽某個埠 切換到目標路徑下,開啟終端 python m httpserver 8010python3 m http.server 8010如需訪問,瀏覽器轉到 http localhost 8010 如果手機想要訪問的話,那麼需要在同一網段 wifi 或熱點 更多詳細操作,點這裡 ...