python中sets模块的用法实例
程序员文章站
2023-10-19 17:46:42
本文实例简单讲述了python中sets模块的用法,分享给大家供大家参考。
具体方法如下:
import sets
magic_chars = sets.s...
本文实例简单讲述了python中sets模块的用法,分享给大家供大家参考。
具体方法如下:
import sets magic_chars = sets.set('abracadabra') print magic_chars poping_chars = sets.set('supercalifragilisticeexpialidocious') print poping_chars print "".join(magic_chars & poping_chars)
程序运行结果如下:
set(['a', 'r', 'b', 'c', 'd']) set(['a', 'c', 'e', 'd', 'g', 'f', 'i', 'l', 'o', 'p', 's', 'r', 'u', 't', 'x']) acrd
希望本文所述对大家的python程序设计有所帮助。
上一篇: C#值类型和引用类型
下一篇: 百度输入法如何安装分类词库附操作安装截图
推荐阅读
-
详解Python中heapq模块的用法
-
Python中operator模块的操作符使用示例总结
-
详解Python中contextlib上下文管理模块的用法
-
Python中asyncore异步模块的用法及实现httpclient的实例
-
实例讲解Python中SocketServer模块处理网络请求的用法
-
Python的string模块中的Template类字符串模板用法
-
深入解析Python中的descriptor描述器的作用及用法
-
iOS中UIActivityIndicatorView的用法及齿轮等待动画实例
-
对Python中TKinter模块中的Label组件实例详解
-
Python中MySQLdb和torndb模块对MySQL的断连问题处理