方法1 ドキュメント文字列を文字列を読む
python
1>>> print(max.__doc__)
2max(iterable, *[, default=obj, key=func]) -> value
3max(arg1, arg2, *args, *[, key=func]) -> value
4
5With a single iterable argument, return its biggest item. The
6default keyword-only argument specifies an object to return if
7the provided iterable is empty.
8With two or more arguments, return the largest argument.
help(max)でも同じものが読めます。
方法2 ソースを読む(Pythoんで書かれた関数に限る)
python
1import inspect
2print(inspect.getsource(func_name))
で関数のソースが表示される。
方法3 公式ドキュメントを読む
PYpiで調べれば、公式ドキュメントが載っているか、あるいはホームページへのリンクがあるので、それを読む。
でたいていのことはわかります。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。