|
发表于 2022-4-11 13:47:36
|
显示全部楼层
其实呢,我个人认为,大多数BIF都是用函数或者class()类编写成的
打开print帮助,你可以发现:
- >>> 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.
- >>>
复制代码 |
|