Python标准库 内置函数print objects sep ' ' end ' ' file sys st

Posted skiwnchh

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python标准库 内置函数print objects sep ' ' end ' ' file sys st相关的知识,希望对你有一定的参考价值。

本函数是实现对象以字符串表示的方式格式化输出到流文件对象file里。其中所有非关键字参数都按str()方式进行转换为字符串输出,关键字参数sep是实现分隔符,比如多个参数输出时想要输出中间的分隔字符;关键字参数end是输出结束时的字符,默认是换行符 ;关键字参数file是定义流输出的文件,可以是标准的系统输出sys.stdout,也可以重定义为别的文件;参数flush是立即把内容输出到流文件,不作缓存。

例子:

 

#print()

print(1, 2, 3, sep = ‘,‘, end = ‘
‘)
print(1, 2, 3, sep = ‘ ‘, end = ‘
‘)

with open(r‘c:\\abc1.txt‘, ‘w‘) as demo:
    print(1, 2, 3, 88888888888, sep = ‘,‘, end = ‘
‘, file = demo)

 

结果输出如下:

1,2,3

 

1 2 3

文件abc1.txt里:

1,2,3,88888888888

 

 

 

蔡军生 QQ: 9073204  深圳

再分享一下我老师大神的人工智能教程吧。零基础!通俗易懂!风趣幽默!还带黄段子!希望你也加入到我们人工智能的队伍中来!https://www.cnblogs.com/captainbed


以上是关于Python标准库 内置函数print objects sep ' ' end ' ' file sys st的主要内容,如果未能解决你的问题,请参考以下文章

Python标准库 内置函数print objects sep ' ' end ' ' file sys st

Python标准库:内置函数dict(mapping, **kwarg)

Python标准库 内置函数divmod a b

Python标准库:内置函数chr(i)

Python 2.7 学习笔记 内置语句函数标准库

Python标准库:内置函数getattr(object, name[, default])