python print及格式化

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python print及格式化相关的知识,希望对你有一定的参考价值。

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

sep=‘ ‘默认空格


print(‘hello‘,‘world‘)
#hello world
print(hello,world,sep=|)
#hello|world

end=‘\n‘默认换行符

print(hello)
print(world)
#hello
#world

print(hello,end= )
print(world)
#hello world

file=sys.stdout默认输出到 系统的标准输出

with open(rd:\test.txt, w) as txt:  
    print(abc,file=txt)
#输出字符串‘abc‘到D盘test.txt文件

flush=False

....

以上是关于python print及格式化的主要内容,如果未能解决你的问题,请参考以下文章

Python print函数及format()格式化输出详解

python常用代码片段总结

Python------条件语句及基本数据类型

学习笔记:python3,代码片段(2017)

python 中 打印及格式化字符串的相关方法

小白学Python 之变量及循环 一