print 早就更新了,
print(i)- print(...)
- print(value, ..., sep=' ', end='\n', file=sys.stdout)
-
- 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.
复制代码
|