pythonでsetするテクニック

1204 ワード

  • 第一位のいくつかの異なる書き方:
  • 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__())