美文网首页
python遍历列表内容

python遍历列表内容

作者: 木子李007 | 来源:发表于2020-08-25 10:39 被阅读0次

    a = ['1', '2', 'x', '5', 'x']

    case1:

    for i in a:
        print(i)
    

    case2:(注意range的用法)

    for i in range(len(a)):
        print(a[i])
    

    相关文章

      网友评论

          本文标题:python遍历列表内容

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