5.print
Posted lcfzh
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了5.print相关的知识,希望对你有一定的参考价值。
>>> help(print)
Help on built-in function print in module builtins:
print(...)
print(value, ..., sep=‘ ‘, end=‘
‘, 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.
以上是关于5.print的主要内容,如果未能解决你的问题,请参考以下文章
[单选题]下面的代码输出什么?$i = 5; print $i++ + ++$i;