Python3 跟 Python2 的不同之处
2018-09-12 本文已影响0人
LCG22
1、Python3 中没有 Long,int 表示为长整型
2、除法
Python2 中 2/4 的结果是 0,Python3 中 2/4 的结果为 0.5
3、Python3 中将 Python2 中的 raw_input 和 input 统一为 input,且无论接受的输入是否是字符串,都返回字符串
4、捕捉异常
Python 2 中捕捉异常的格式是:
try:
do something
except Exception, e:
print e
而在 Python3 中则是:
try:
do something
except Exception as e:
print(e)