print输出

♥️作者:小刘在C站

♥️每天分享课堂笔记,一起努力,共赴美好人生!

♥️夕阳下,是最美的,绽放。   

目录

一.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

看上面得到我们函数可以传输多个值,并且自带空格隔开每一个变量,另外也可以自带换行。

a = 3

c = 'python'

e = 'python'print(c*a, e)print(c)

返回结果:

pythonpythonpythonpython  python

可以看见自动换行,也可以通过自定义结尾格式

_____________________________________________________________________________

二.print函数输出

a = 3

c = 'python'

e = 'python'

f = 800print('111:%s' % c)  

# 使用%s来替换字符串print('222' % f)  

# 使用%d来替换数字print('{}333'.format(e))  

# 使用format()函数来替换所有字符print(c, '\t', e) 

 # \t 表示空格print(c, '\n', e)  # \n 表示换行

返回结果:

111:python自学网  222  python333  python     python  python  python

print()函数也可以传入其他文件哦

♥️关注,就是我创作的动力

♥️点赞,就是对我最大的认可

♥️这里是小刘,励志用心做好每一篇文章,谢谢大家

你可能感兴趣的:(python,python,开发语言,运维)