python中list、tuple、set、dict区别

list、tuple、set、dict区别

参考:python的列表,字典,元组,集合的区别和各自使用方法

遍历set

由于set也是一个集合,所以,遍历set和遍历list类似,都可以通过for循环实现
直接用for循环遍历set中的元素

weekdays = set(['MON', 'TUE', 'WED', 'THU', 'FRI', 'SAT', 'SUN'])
for d in weekdays:
    print (d)
posted @ 2020-04-22 13:34  牛犁heart  阅读(324)  评论(0编辑  收藏  举报