pythonでsetするテクニック
1204 ワード
#!/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__())