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()函数也可以传入其他文件哦

相关文章
|
8月前
|
程序员 编译器 C语言
用printf函数输出数据
用printf函数输出数据
64 2
|
8月前
|
IDE Java Shell
聊聊 print 的前世今生
聊聊 print 的前世今生
75 1
射极输出器
射极输出器(Emitter Follower)是一种常见的放大电路,也称为共射输出器。它由一个晶体管组成,通常是NPN型晶体管。
347 0
|
2月前
|
JavaScript 前端开发 Java
print_numbers_up_to 函数介绍
【10月更文挑战第20天】
55 12
|
3月前
输出 "Hello, World!"
【10月更文挑战第12天】输出 "Hello, World!"
18 2
|
3月前
|
固态存储 SDN
编写input()和output()函数输入
编写input()和output()函数输入。
34 2
|
4月前
输出
输出。
31 1
|
8月前
|
C语言
使用printf函数输出数据
在C语言中,printf函数是一个常用的标准库函数,用于在控制台输出格式化的字符串和数据。它允许我们按照指定的格式输出各种类型的数据,包括整数、浮点数、字符和字符串等。
93 0
|
移动开发 Python
“ \r “导致print打印被覆盖
“ \r “导致print打印被覆盖
133 0
|
Python
一日一技:print函数也能写文件
一日一技:print函数也能写文件
165 0