美文网首页
Python3 跟 Python2 的不同之处

Python3 跟 Python2 的不同之处

作者: LCG22 | 来源:发表于2018-09-12 10:11 被阅读0次

    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)

    相关文章

      网友评论

          本文标题:Python3 跟 Python2 的不同之处

          本文链接:https://www.haomeiwen.com/subject/xggwjftx.html