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)

Return the ceiling of x as a float.
This 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メソッドの紹介(英語の2つの下線)
help(math.pow):powメソッドの宣言