Python中print()函数不换行的方法
一、让print()函数不换行
在Python中,print()函数默认是换行的。但是,在很多情况下,我们需要不换行的输出(比如在算法竞赛中)。那么,在Python中如何做到这一点呢?
其实很简单。只要指定print()函数的end参数为空就可以了。(默认是’\n’)
例如:
print('hello world', end='')
print('!!!')
输出为:
二、print()函数浅析
当然,print()函数不止有end这个参数,还有其它几个参数。下面我们来看一看这些参数对输出分别起到什么作用。
先来看一下print()函数的原型:
print(*objects, sep=' ', end='\n', file=sys.stdout, flush=False)
以下摘自官方文档:
Print objects to the text stream file, separated by sep and followed by end. sep, end, file and flush, if present, must be given as keyword arguments.
All non-keyword arguments are converted to strings like str() does and written to the stream, separated by sep and followed by end. Both sep and end must be strings; they can also be None, which means to use the default values. If no objects are given, print() will just write end.
The file argument must be an object with a write(string) method; if it is not present or None, sys.stdout will be used. Since printed arguments are converted to text strings, print() cannot be used with binary mode file objects. For these, use file.write(...) instead.
Whether output is buffered is usually determined by file, but if the flush keyword argument is true, the stream is forcibly flushed.
Changed in version 3.3: Added the flush keyword argument.
也就是说,print()将objects转换成strings输出到流中,用sep分隔,以end结束。
下面通过几个例子,来具体的看一看print()函数各参数的作用。
第一个参数objects就不多说了,要是不知道干啥的可以考虑从头学起。
第二个参数sep,表示objects参数连接时使用的字符,默认是空格。
print('hello', 'world', sep='*')
输出为:
第三个参数end,表示输出完后的结束符,默认是换行。例子前面有了。
第四个参数file,表示输出到哪里,默认是sys.stdout。必须是file-like对象,即有write方法,不可以用二进制模式。
f = open('print.txt', 'w')
print('hello', 'world', file=f)
程序运行结束后,打开文件可以看到:
第五个参数flush,表示是否立即输出到file所指定的对象中。当为True时,立即输出,当为False时,则取决于file对象(一般是不立即输出)。
上面的例子,如果加个暂停,可以发现,数据没有被立即写入,只有在f.close()后才被写入。如果没有写f.close(),那就在程序运行结束以后写入。
f = open('print.txt', 'w')
print('hello', 'world', file=f)
s = input('f.close()? (Y/N)')
if s == 'Y':
f.close()
如果flush为True时,则会被立即写入。
f = open('print.txt', 'w')
print('hello', 'world', file=f, flush=True)
s = input('f.close()? (Y/N)')
if s == 'Y':
f.close()
以上就是对Python中print()函数的浅析,鉴于本人的水平有限,有不妥之处,还请指出。
#!/usr/bin/env python3
# -*- coding: utf-8 -*- # 不换行
print('hello world', end='')
print('!!!') f = open('print.txt', 'w')
f1 = open('print1.txt', 'w') print('hello', 'world')
print('hello', 'world', sep='*')
print('hello', 'world', file=f)
print('hello', 'world', file=f1, flush=True) s = input('f.close()? (Y/N)')
if s == 'Y':
f.close() # 如果输入为N,此处暂停观察print.txt中的内容是否为空
s = input()
Python中print()函数不换行的方法的更多相关文章
- Python中print()函数不换行的方法以及分隔符替换
一.让print()函数不换行 在Python中,print()函数默认是换行的.但是,在很多情况下,我们需要不换行的输出(比如在算法竞赛中).那么,在Python中如何做到这一点呢? 其实很简单.只 ...
- 【313】python 中 print 函数用法总结
参考:python 中 print 函数用法总结 参考:Python print() 函数(菜鸟教程) 参考:Python 3 print 函数用法总结 目录: 字符串和数值类型 变量 格式化输出 p ...
- Python中针对函数处理的特殊方法
Python中针对函数处理的特殊方法 很多语言都提供了对参数或变量进行处理的机制,作为灵活的Python,提供了一些针对函数处理的特殊方法 filter(function, sequence):对se ...
- Python中readline()函数 去除换行符
从Python中readline()函数读取的一行内容中含有换行符\n,很多时候我们需要处理不含有换行符的字符串,此时就要去掉换行符\n. 方法是使用strip()函数. 例子如下: f = open ...
- python中print()函数的“,”与java中System.out.print()函数中的“+”
python中的print()函数和java中的System.out.print()函数都有着打印字符串的功能. python中: print("hello,world!") 输出 ...
- Python中print()函数的用法详情
描述 print() 方法用于打印输出,最python中常见的一个函数. 在交互环境中输入help(print)指令,可以显示print()函数的使用方法. >>> help(pri ...
- Python 中的函数与类的方法
注:本文转译自 Stackoverflow 上 Adding a Method to an Existing Object 的最佳回答. 在 python 中,def 定义的函数与类中的方法有很大的不 ...
- python 中 print 函数用法总结
Python 思想: “一切都是对象!” 在 Python 3 中接触的第一个很大的差异就是缩进是作为语法的一部分,这和C++等其他语言确实很不一样,所以要小心 ,其中python3和python2中 ...
- Python中print()函数的用法
print()函数用于打印输出 1.函数语法: print(values,sep=' ',end='\n') sep和end是print()函数常用参数 参数sep是一次打印多个元素时的间隔符号,默认 ...
随机推荐
- hdu-5646 DZY Loves Partition(贪心)
题目链接: DZY Loves Partition Time Limit: 4000/2000 MS (Java/Others) Memory Limit: 262144/262144 K ( ...
- C++ STL源码剖析
stl_config.h defalloc.h stl_alloc.h memory.cpp stl_construct.h stl_uninitialized.h stl_iterator.h ty ...
- JavaWEB - 请求的转发和重定向
JavaWEB - Servlet
- Android基于socket的群聊程序
在网上看了好多,但是感觉不是太简单就是只能单独聊,所以就自己写了个可以群聊的,直接上代码了 一.服务器端 这里用的MyEclipse作为服务器端 MyServerScoket.java package ...
- Android 中对于图片的内存优化方法
Android 中对于图片的内存优化方法,需要的朋友可以参考一下 1. 对图片本身进行操作 尽量不要使用 setImageBitmap.setImageResource. BitmapFact ...
- freeMarker(二)——模板开发指南之入门
学习笔记,选自freeMarker中文文档,译自 Email: ddekany at users.sourceforge.net 模板开发指南-入门 1.模板+数据模型=输出 假设在一个在线商店的应 ...
- 原 requirements.txt 介绍 & 快捷生成
requirements.txt介绍 requirements.txt 文件 里面记录了当前程序的所有依赖包及其精确版本号. 这个文件有点类似与Rails的Gemfile.其作用是用来在另一台 ...
- 用VBA计算两个日期之间的工作日(去掉周末两天)
最近公司HR和Finance想算员工的工作天数,想让我帮忙写些VBA,自己从网上找了下代码,自己再改改,以下来自网络. 计算两个日期之间的工作日,用VBA,因量大,最好用数组做 Sub kk() Di ...
- 洛谷 P4546 & bzoj 5020 在美妙的数学王国中畅游 —— LCT+泰勒展开
题目:https://www.luogu.org/problemnew/show/P4546 先写了个55分的部分分,直接用LCT维护即可,在洛谷上拿了60分: 注意各处 pushup,而且 spla ...
- python unittest之断言及示例
python unintest单元测试框架提供了一整套内置的断言方法. 如果断言失败,则抛出一个AssertionError,并标识该测试为失败状态 如果异常,则当做错误来处理 注意:以上两种方式的区 ...