python03-使用print函数输出

发布时间:2024年01月22日

print函数大家都算是用的比较多的,很多人经常调试的时候,就会用print函数,今天我细致的讲下print函数。

我去查看了print的解释,如下:

def print(self, *args, sep=' ', end='\n', file=None): # known special case of 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.
    """
    pass

从上述可以看出来

print(value, ..., sep=' ', end='\n', file=sys.stdout,flush=False)

value参数可以接受任意多个变量或值,所以print()函数完

文章来源:https://blog.csdn.net/pacermaker/article/details/135740434
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。