美文网首页
pyhton 解析式

pyhton 解析式

作者: 热爱PYTHON的小白 | 来源:发表于2020-03-24 15:44 被阅读0次

    列表解析式

    lst1 = list(range(10))
    lst2 = [item + 100 for item in lst1]
    print(lst2)
    

    带条件判断的列表解析式, item满足被2整除,被3整除

    lst3 = [item + 100 for item in lst1 if item % 2 == 0 and item % 3 == 0]
    print(lst3 )
    

    集合解析式

    set1 = {(x,x+1) for x in range(10)}
    print(set1)
    

    字典解析式

    dict1 = {'{}'.format(x):x for x in range(10)}
    print(dict1)
    

    相关文章

      网友评论

          本文标题:pyhton 解析式

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