python中求列表的并集差集
2022/3/20 11:27:33
本文主要是介绍python中求列表的并集差集,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
- 以上代码是求两个列表的并集
# 获取不同的列表集 def get_order_currency(kline_time ): if kline_time=='15m': return [1, 2, 3, 3, 4, 4, 5, 6, 6, 6, 7, 8, 9] else: return [ 4, 5, 6, 6, 6, 7, 8, 9] kline_time = '15m' list_currency15m = get_order_currency() kline_time = '30m' list_currency30m = get_order_currency() # 求15分钟和30分钟两个集合的并集 ret2 = list(set(list_currency15m).union(set(list_currency30m))) # 求两个列表的差集 ret2 = [ i for i in list_currency15m if i not in list_currency30m ] kline_time = '15m' list_currency15m = get_order_currency()
kline_time = '30m' list_currency30m = get_order_currency() # 求15分钟和30分钟两个集合的并集 ret2 = list(set(list_currency15m).union(set(list_currency30m)))
这篇关于python中求列表的并集差集的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-16`PyMuPDF4LLM`:提取PDF数据的神器
- 2024-11-16四种数据科学Web界面框架快速对比:Rio、Reflex、Streamlit和Plotly Dash
- 2024-11-14获取参数学习:Python编程入门教程
- 2024-11-14Python编程基础入门
- 2024-11-14Python编程入门指南
- 2024-11-13Python基础教程
- 2024-11-12Python编程基础指南
- 2024-11-12Python基础编程教程
- 2024-11-08Python编程基础与实践示例
- 2024-11-07Python编程基础指南