python2与python3两版本的区别是众所周知的,今天主要记录python下版本2 与版本3的区别 python2 In [7]: logfile = open('/tmp/mylog.log', 'a') In [8]: print >> logfile, 'writeen by python version 2' In [9]: logfile.close() In [10]: cat /tmp/mylog.log writeen by python version 2 python
原文地址:http://old.sebug.net/paper/books/dive-into-python3/porting-code-to-python-3-with-2to3.html 使用2to3将代码移植到Python 3 ❝ Life is pleasant. Death is peaceful. It’s the transition that’s troublesome. ❞— Isaac Asimov (attributed) 概述 几乎所有的Python 2程序都需要一些修改
Python2和Python3的一些语法区别 python 1.print 在版本2的使用方法是: print 'this is version 2 也可以是 print('this is version 2') 但到了3,就只能加上括号,像一个函数一样来使用 print: print('this is version 3') 2.input 2里面有两个用来从命令行接受输入的函数:input 和raw_input. value = input() input接收的是一个值或变量,也就是说,你如