• range方法在Python2和Python3中的不同



    range()方法是Python中常用的方法, 但是在Python2和Python3中使用方法不同,下面看下它们的不同使用方法。
    range方法详解
    range(start, stop[, step])
    range是python中的其中一个内置函数
    作用:可创建一个整数列表。一般用在 for 循环中。

    参数说明:
    start:起点,一般和stop搭配使用,既生成从start开始到stop结束(不包括stop)范围内的整数,例如:range(1,10),会生成[1,2,3,4,5,6,7,8,9]
    stop:终点,可以和start搭配使用,也可以单独使用,既当start=0时,例如range(5) = range(0, 5)
    step:步长,既下一次生成的数和这次生成的数的差,例如range(1, 10, 2) 生成[1,3,5,7,9],再如range(1,10,3) 生成[1, 4, 7]


    代码示例:

     Python 3.7.2 (default, Feb 12 2019, 08:15:36) 
     [Clang 10.0.0 (clang-1000.11.45.5)] on darwin  
     Type "help", "copyright", "credits" or "license" for more information.  
     >>> for i in range(1,10, 1): 
     ...     print(i) 
     ... 
    >>>

    使用区别
    在python2中,range方法得到的结果就是一个确定的列表对象,列表对象所拥有的方法,range方法生成的结果对象都可以直接使用,而在python3中,range方法得到的对象是一个迭代器而不是一个确定的列表,如果想要转化为列表对象则需要再使用list方法进行转化。
    for i in range(start, stop)在python2和python3中都可使用
    代码实例:

    Python3

    Python 3.7.2 (default, Feb 12 2019, 08:15:36) 
     [Clang 10.0.0 (clang-1000.11.45.5)] on darwin  
     Type "help", "copyright", "credits" or "license" for more information.  
     >>> for i in range(1,10, 1): 
     ...     print(i) 
     ... 
    >>>

    Python2:

       Python 2.7.10 (default, Aug 17 2018, 19:45:58) 
     [GCC 4.2.1 Compatible Apple LLVM 10.0.0 (clang-1000.0.42)] on darwin  
     Type "help", "copyright", "credits" or "license" for more information.  
     >>> for i in range(1,10, 1): 
     ...     print(i) 
     ... 
    
     >>>


    Python2直接生成列表,Python3需要配合list方法使用

    Python3:

     Python 3.7.2 (default, Feb 12 2019, 08:15:36) 
     [Clang 10.0.0 (clang-1000.11.45.5)] on darwin  
     Type "help", "copyright", "credits" or "license" for more information.  
     >>> l = range(1, 10) 
     >>> l 
     range(1, 10)  
     >>> type(l) 
     <class 'range'>  
     >>> l2 = list(l) 
     >>> l2 
     [1, 2, 3, 4, 5, 6, 7, 8, 9] 
     >>>

    Python2:

      Python 2.7.10 (default, Aug 17 2018, 19:45:58) 
     [GCC 4.2.1 Compatible Apple LLVM 10.0.0 (clang-1000.0.42)] on darwin  
     Type "help", "copyright", "credits" or "license" for more information.  
     >>> l = range(1, 10) 
     >>> l 
     [1, 2, 3, 4, 5, 6, 7, 8, 9] 
     >>>


    Python3中range()方法生成的已经不是一个列表, 而是一个range的迭代器

  • 相关阅读:
    简体中文和繁体中文的转换
    EasyPoi 快速Office 开发
    玩转SpringBoot之定时任务详解
    Spring Boot中使用Swagger2构建强大的RESTful API文档
    一篇文章带你搞懂 SpringBoot与Swagger整合
    JAVA团队开发手册
    CentOS(6、7)修改主机名(hostname)
    SpringBoot多环境部署,在启动时动态设置相应的配置文件
    MyBatis逆向工程代码的生成以及使用详解(持续更新)
    MySQL写入插入数据优化配置
  • 原文地址:https://www.cnblogs.com/nanhe/p/13169345.html
Copyright © 2020-2023  润新知