zoukankan      html  css  js  c++  java
  • Python for循环通过序列索引迭代

    Python for 循环通过序列索引迭代:

    注:集合 和 字典 不可以通过索引进行获取元素,因为集合和字典都是无序的。

    使用 len (参数) 方法可以获取到遍历对象的长度。

    程序:

    strs = "Hello World."
    # 使用 len 方法可以获取到遍历对象的长度。
    print(len(strs))
    # 12
    lst = [7,8,9,4,5,6]
    print(len(lst))
    # 6
    tup = (1,2,3,7,8,9)
    print(len(tup))
    # 6

    使用 range 方法(左闭右开):

    range 函数参数如下,起始位置、终止位置(不包含)、步长。

      注:起始位置默认为 0 。

        步长可以为负,默认为 1。

    程序:

    # range 函数 (起始位置,终止位置,步长)
    #   注:起始位置默认为 0 。
    #     步长可以为负,默认为 1。
    lst = [i for i in range(5)]
    print(lst) # 起始位置默认为 0
    # [0, 1, 2, 3, 4]
    
    lst = [i for i in range(1,5)]
    print(lst) # 不包含终止位置
    # [1, 2, 3, 4]
    
    lst = [i for i in range(1,5,2)]
    print(lst) #步长可以根据自己需要进行更改
    # [1, 3]
    
    lst = [i for i in range(-5,-1,1)]
    print(lst) # 起始位置和终止位置可以为负
    # [-5, -4, -3, -2]
    
    lst = [i for i in range(8,5,-1)]
    print(lst) # 步长可以为负
    # [8, 7, 6]

    通过序列索引进行迭代操作程序:

    字符串:

    strs = "Hello World."
    for i in range(len(strs)):
        print(strs[i],end = " ")
    #     H e l l o   W o r l d .

    列表:

    lst = [7,8,9,4,5,6]
    for i in range(len(lst)):
        print(lst[i],end = " ")

    元组:

    tup = (1,2,3,7,8,9)
    for i in range(len(lst)):
        print(lst[i],end = " ")

    2020-02-06

  • 相关阅读:
    带有“全选”的combotree
    combotree(组合树)的使用
    根据权限显示accordion
    accordion(折叠面板)的使用
    js中substr、substring、indexOf、lastIndexOf的用法
    EasyUI中使用自定义的icon图标
    EasyUI tree的三种选中状态
    C# List集合去重使用lambda表达式
    C# DataTable去重,根据列名去重保留其他列
    win10下部署.Net Web项目到IIS10
  • 原文地址:https://www.cnblogs.com/hany-postq473111315/p/12268174.html
Copyright © 2011-2022 走看看