Python:使用2to3将Python2转Python3
【摘要】 Python2中的print是一个语句,而Python3中是一个函数
Python2代码 example.py
def greet(name): print "Hello, {0}!".format(name)
print "What's your name?"
name = raw_input()
greet(name)
12345
命令行中执行指令
$ 2t...
Python2中的print
是一个语句,而Python3中是一个函数
Python2代码 example.py
def greet(name): print "Hello, {0}!".format(name)
print "What's your name?"
name = raw_input()
greet(name)
- 1
- 2
- 3
- 4
- 5
命令行中执行指令
$ 2to3 -w example.py
- 1
Python3代码
def greet(name): print("Hello, {0}!".format(name))
print("What's your name?")
name = input()
greet(name)
- 1
- 2
- 3
- 4
- 5
书写兼容代码
from __future__ import print_function
- 1
- 2
文章来源: pengshiyu.blog.csdn.net,作者:彭世瑜,版权归原作者所有,如需转载,请联系作者。
原文链接:pengshiyu.blog.csdn.net/article/details/93506342
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)