zoukankan      html  css  js  c++  java
  • Python模块之 __future__ 转载

    转载自https://www.cnblogs.com/bluescorpio/archive/2009/09/09/1563634.html

    今天在学习Python Cookbook的时候,发现一句语法from __future__ import division,很奇怪__future__这个名字,网上搜了一下,原来是很有用的一个模块。

    详细说明见这里。按照官方的解释,至少确保在2.1之前版本的Python可以正常运行一些新的语言特性,需要使用语句 'from __future__ import *'。举例来说:

    # Enable nested scopes in Python 2.1
    from __future__ import nested_scopes

    如果使用这个语句,则该语句必须是模块或程序的第一个语句。此外,'__ future__' 模块中存在的特性最终将成为Python语言标准的一部分。到那时,将不再需要使用 '__future__' 模块。

    更多示例:

    1. Python 2.6中也有一个 __future__ import 使得所有的字符串文本成为Unicode字符串。这就意味着u转义序列可以用于包含Unicode字符。

    from __future__ import unicode_literals

    s = ('u751fu3080u304eu3000u751fu3054'
    'u3081u3000u751fu305fu307eu3054')
    print len(s) # 12 Unicode characters

    2. Python 2.6可以通过 import __future__ 来将print从语言语法中移除,让你可以使用函数的形式。例如:

    from __future__ import print_function
    print('# of entries', len(dictionary), file=sys.stderr)

    3. 整数除法

    python 2.5中:23/6 # 得3
    from __future__ import division 之后:
    23/6 # 得 3.8333333333333335

  • 相关阅读:
    【十大思想实验之中的一个】电车难题
    XMLHTTP使用具体解释
    高速排序 解析
    RapeLay(电车之狼R)的结局介绍 (隐藏结局攻略)
    java设计模式演示样例
    [Network]Transport Layer
    【2012.1.24更新】不要再在网上搜索eclipse的汉化包了!
    WebService究竟是什么?
    epoll使用具体解释(精髓)
    贪心算法
  • 原文地址:https://www.cnblogs.com/scarlett-ma/p/8309762.html
Copyright © 2011-2022 走看看