Pythpon3与Python2中print的使用

Python2

Python2中的print不是个函数;

>>> print("hello!")
hello!
>>> print"hello!"
hello!
>>> print "The num:%d , the str :%s."%(1,'Tom')
The num:1 , the str :Tom.

输出结果到文件:

>>> a,b = 1,2
>>> output=open("reult.txt","w+")
>>> print>>output,"想输出的结果",a,b

Python 2.6支持新的print()语法:

from __future__ import print_function
print("Hello", "world!", sep=' ')
Hello world!

Python3

Python3中是print()函数, Python 2.6与Python 2.7部分地支持这种形式的print()

>>> print"The num:%d , the str :%s."%(1,'Tom')
SyntaxError: invalid syntax
>>> print("The num:%d , the str :%s."%(1,'Tom'))
The num:1 , the str :Tom.

使用help()查看内置函数print()的使用方法:

>>> help(print)
Help on built-in function print in module builtins:

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.

输出结果到文件

>>> output=open("reult.txt","w+")
>>> print("想输出的内容",file=output)

格式化输出:
format()
括号及其里面的字符 (称作格式化字段) 将会被 format() 中的参数替换:

>>> f,r,u = 1,2,3
>>> print(' the num1:{} \n num2: {} \n the num3: {}'.format(f,r,u))
 the num1:1 
 num2: 2 
 the num3: 3

在括号中的数字用于指向传入对象在 format() 中的位置:

>>> f,r,u = 1,2,3
>>> print(' the num1:{2} \n num2: {1} \n the num3: {0}'.format(f,r,u))
the num1:3 
 num2: 2 
 the num3: 1
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • 标签: Python 引言:(文章比较长,建议看目录按需学习~) 以前刚学编程的时候就对Python略有耳闻,不过...
    coder_pig阅读 8,420评论 3 42
  • 可以看我的博客 lmwen.top 或者订阅我的公众号 简介有稍微接触python的人就会知道,python中...
    ayuLiao阅读 8,465评论 1 5
  • Since Jan.26th,2016 1、ubuntu 下运行 python 的几种方式 在 terminal...
    Rco阅读 7,416评论 0 2
  • “如果有来生,要做一棵树,站成永恒,没有悲欢的姿势。 一半在土里安详,一半在风里飞扬,一半洒落阴凉,一半沐浴阳光。...
    蓝莓果冻阅读 2,571评论 2 2

友情链接更多精彩内容