python查看函数用法
时间: 2023-07-25 17:45:21 浏览: 95
在 Python 中,可以使用内置函数 `help()` 或者 `dir()` 来查看函数的用法。
1. 使用 `help()` 函数:在 Python 命令行或者脚本中输入 `help(函数名)` 即可查看该函数的详细用法和说明。例如:
```python
>>> help(print)
Help on built-in function print in module builtins:
print(...)
print(value, ..., sep=' ', end='\n', file=sys.stdout, flush=False)
Prints the values to a stream, or to sys.stdout by default.
Optional keyword arguments:
file: a file-like object (stream); defaults to the current sys.stdout.
sep: string inserted between values, default a space.
end: string appended after the last value, default a newline.
flush: whether to forcibly flush the stream.
```
2. 使用 `dir()` 函数:在 Python 命令行或者脚本中输入 `dir(函数名)` 即可查看该函数的属性列表。例如:
```python
>>> dir(print)
['__annotations__', '__call__', '__class__', '__closure__', '__code__', '__defaults__', '__delattr__', '__dict__', '__dir__', '__doc__', '__eq__', '__format__', '__ge__', '__get__', '__getattribute__', '__globals__', '__gt__', '__hash__', '__init__', '__init_subclass__', '__kwdefaults__', '__le__', '__lt__', '__module__', '__name__', '__ne__', '__new__', '__qualname__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__']
```
其中,属性 `__doc__` 表示函数的文档字符串,可以通过 `print(函数名.__doc__)` 显示出来。
阅读全文