python中set的小技巧

  1. 取第一位的几种不同写法:

  • for的迭代

  • #!/usr/bin/env python
    # -*- coding: UTF-8 -*-
    # Time      : 2020/5/22 18:36
    # Email     : [email protected]
    # File      : setTst.py
    __author__ = 'ChenLiang.Miao'
    # import --+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ #
    
    # function +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ #
    
    # +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ #
    mySet = {1, 2, 3, 4, 5}
    
    for each in mySet: break
    firstVal = each

 

  • 内置函数生成迭代器

  • #!/usr/bin/env python
    # -*- coding: UTF-8 -*-
    # Time      : 2020/5/22 18:36
    # Email     : [email protected]
    # File      : setTst.py
    __author__ = 'ChenLiang.Miao'
    # import --+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ #
    
    # function +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ #
    
    # +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ #
    mySet = {1, 2, 3, 4, 5}
    
    # python 2
    firstVal = mySet.__iter__().next()
    
    # python 3
    firstVal = next(mySet.__iter__())
    

     

你可能感兴趣的:(set)