博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【学习笔记】python2的print和python3的print()
阅读量:5769 次
发布时间:2019-06-18

本文共 2591 字,大约阅读时间需要 8 分钟。

python2.x和3.x中的输出语句有着明显不同

2.x中的print不是个函数,输出格式如下

1 Python 2.7.12+ (default, Aug  4 2016, 20:04:34) 2 [GCC 6.1.1 20160724] on linux23 Type "help", "copyright", "credits" or "license" for more information.4 >>> print "There is only %d %s in the sky."%(1,'sun')5 There is only 1 sun in the sky.

3.x中的print成了函数,输出格式如下

1 Python 3.5.2+ (default, Aug  5 2016, 08:07:14) 2 [GCC 6.1.1 20160724] on linux3 Type "help", "copyright", "credits" or "license" for more information.4 >>> print("There is only %d %s in the sky."%(1,'sun'))5 There is only 1 sun in the sky.

为什么要做出这样的变化,主要原因有以下几点:

1.print不是函数,不能使用help(),对使用者不方便。

python2中help(print)会报错。

1 >>> help(print)2   File "
", line 13 help(print)4 ^5 SyntaxError: invalid syntax

python3中,可以使用help(print),清楚的看到print的参数。

1 Help on built-in function print in module builtins: 2  3 print(...) 4     print(value, ..., sep=' ', end='\n', file=sys.stdout, flush=False) 5      6     Prints the values to a stream, or to sys.stdout by default. 7     Optional keyword arguments: 8     file:  a file-like object (stream); defaults to the current sys.stdout. 9     sep:   string inserted between values, default a space.10     end:   string appended after the last value, default a newline.11     flush: whether to forcibly flush the stream.12 (END)

2.从上面的help(print)中我们也可以看到在print()中的两个重要参数,sep和end。这两个参数使print()相比print多了两个新功能,自定义间隔符(默认空格)和结束符(默认回车)。

1 >>> print("123","456","789")2 123 456 7893 >>> print("123","456","789",sep='-')4 123-456-789
1 >>> x=10242 >>> print(t)3 2564 >>> print(t,end=" end")5 256 end>>> 6 >>> print(t,end=" end\n")7 256 end

3.print()重定向输出文件更加方便。

2.x需要print>>重定向输出,感觉代码很混乱。

1 >>> out=open("test.txt","w")2 >>> print>>out,"123"

3.x中输出文件成了一个参数,使用更方便。

1 >>> out=open("test.txt","w")2 >>> print("123",file=out)

4.python2.x中print语句的格式化输出源自于C语言的格式化输出,这种语法对于C这种静态语言比较适用,但是对于拥有很多先进数据结构的python来说就有点力不从心了。python的元组,列表,字典,集合等不适合用这种结构表示,这些数据结构大多元素用下标表示,在这种结构中写出来很混乱。python3.x的print()函数提供了有点类似C#(不知道这么说对不对)中的格式化输出函数format()。另外print()也兼容原来的格式化输出方式。

1 >>> print("%s is %s."%('Aoko','good'))2 Aoko is good.

format()让输出格式更清晰。

1 >>> print("{0} is {1}.".format('Aoko','good'))2 Aoko is good.

format()支持数组下标,使python中的一些数据结构输出更加方便。

1 >>> name=["Kaito",5]2 >>> print("{0[0]} has {0[1]} dollars.".format(name))3 Kaito has 5 dollars.

format()下的格式限定符,和原来的差不多。

1 >>> x=5.62 >>> print("{0:4f}".format(x))3 5.600000

由此看来,print()相比print还是有很大进步的。说句题外话,我希望更多的python用户多花点时间实现代码对新版本的兼容,而不是花时间用在争论“python2和python3谁更好”的口水战上。python作为一种免费语言给我们带来了很多方便,我们不应该吝惜自己那么一点时间。花一点时间让python发展下去,变得更强。

转载于:https://www.cnblogs.com/kaitoex/p/6085606.html

你可能感兴趣的文章
20个Linux服务器性能调优技巧
查看>>
多重影分身:一套代码如何生成多个小程序?
查看>>
Oracle将NetBeans交给了Apache基金会
查看>>
填坑记:Uncaught RangeError: Maximum call stack size exceeded
查看>>
SpringCloud之消息总线(Spring Cloud Bus)(八)
查看>>
DLA实现跨地域、跨实例的多AnalyticDB读写访问
查看>>
实时编辑
查看>>
KVO原理分析及使用进阶
查看>>
【348天】每日项目总结系列086(2018.01.19)
查看>>
【JS基础】初谈JS现有的数据类型
查看>>
【294天】我爱刷题系列053(2017.11.26)
查看>>
Microsoft发布了Azure Bot Service和LUIS的GA版
查看>>
Google发布Puppeteer 1.0
查看>>
.NET开源现状
查看>>
可替换元素和非可替换元素
查看>>
2016/08/25 The Secret Assumption of Agile
查看>>
(Portal 开发读书笔记)Portlet间交互-PortletSession
查看>>
搭建vsftpd服务器,使用匿名账户登入
查看>>
AMD改善Linux驱动,支持动态电源管理
查看>>
JAVA中循环删除list中元素的方法总结
查看>>