美文网首页
Python基础-for循环

Python基础-for循环

作者: 月沉眠love | 来源:发表于2019-06-05 14:49 被阅读0次

    Python基础-for循环

    1.for 指定遍历

    for  i in rang(50,100,2):   # 2 为步长
          print (i)     #输出:50 52 54 ~ 
    
    

    2.for 不同遍历

    
    list = [1,2,3,4]
    tuple = (5,6,7,8)
    dict = {"name":"python","age":18}
    col = {"a","b","c"}
    
    #字典默认遍历得到的是键
    #遍历字典里面的值
    for i in dict:
          print (dict[i])  #输出: python 18
    
    

    相关文章

      网友评论

          本文标题:Python基础-for循环

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