菜鸟教程 -- 学的不仅是技术,更是梦想!

Python 3 教程
Python3 教程 Python3 简介 Python3 环境搭建 Python3 VScode Python3 基础语法 Python3 基本数据类型 Python3 数据类型转换 Python3 解释器 Python3 注释 Python3 运算符 Python3 数字(Number) Python3 字符串 Python3 列表 Python3 元组 Python3 字典 Python3 集合 Python3 条件控制 Python3 循环语句 Python3 编程第一步 Python3 推导式 Python3 迭代器与生成器 Python3 with Python3 函数 Python3 lambda Python3 装饰器 Python3 数据结构 Python3 模块 Python __name__ Python3 输入和输出 Python3 File Python3 OS Python3 错误和异常 Python3 面向对象 Python3 命名空间/作用域 Python 虚拟环境的创建 Python 类型注解 Python3 标准库概览 Python3 实例 Python 测验

Python3 高级教程

Python3 正则表达式 Python3 CGI编程 Python3 MySQL(mysql-connector) Python3 MySQL(PyMySQL) Python3 网络编程 Python3 SMTP发送邮件 Python3 多线程 Python3 XML 解析 Python3 JSON Python3 日期和时间 Python3 内置函数 Python3 MongoDB Python3 urllib Python uWSGI 安装配置 Python3 pip Python3 operator Python math Python requests Python random Python OpenAI Python 有用的资源 Python AI 绘画 Python statistics Python hashlib Python 量化 Python pyecharts Python selenium 库 Python 爬虫 Python Scrapy 库 Python Markdown Python sys 模块 Python Pickle 模块 Python subprocess 模块 Python queue 模块 Python StringIO 模块 Python logging 模块 Python datetime 模块 Python re 模块 Python csv 模块 Python threading 模块 Python asyncio 模块 Python PyQt Python for 循环 Python while 循环
(追記) (追記ここまで)

Python frozenset() 函数

Python3 内置函数 Python3 内置函数


frozenset() 是 Python 中用于创建不可变集合(frozenset)的内置函数。

frozenset 与 set 的区别在于:frozenset 是不可变的,创建后不能添加、删除或修改元素。由于其不可变性,frozenset 可以用作字典的键或集合的元素。

单词释义: frozenset 是"冻结集合"的缩写,表示不可变的集合。


基本语法与参数

语法格式

frozenset(iterable)

参数说明

  • 参数 iterable:
    • 类型: 可迭代对象
    • 描述: 要转换为不可变集合的可迭代对象。

函数说明

  • 返回值: 返回一个 frozenset 对象。
  • 特殊值: 不带参数返回空 frozenset。

实例

示例 1:创建 frozenset

实例

# 从列表创建
lst = [1, 2, 3, 2, 1]
fs = frozenset(lst)
print(fs) # 输出: frozenset({1, 2, 3})

# 从字符串创建
s = "hello"
fs = frozenset(s)
print(fs) # 输出: frozenset({'h', 'e', 'l', 'o'})

# 从字典创建(取键)
d = {"a": 1, "b": 2}
fs = frozenset(d)
print(fs) # 输出: frozenset({'a', 'b'})

# 空 frozenset
fs = frozenset()
print(fs) # 输出: frozenset()

运行结果预期:

frozenset({1, 2, 3})
frozenset({'h', 'e', 'l', 'o'})
frozenset({'a', 'b'})
frozenset()

代码解析:

  1. frozenset 会自动去重。
  2. 可以和各种可迭代对象一起使用。
  3. frozenset 是不可变的,没有 add、remove 等方法。

示例 2:frozenset 的用途

实例

# frozenset 可以作为字典的键
d = {frozenset([1, 2]): "A", frozenset([3, 4]): "B"}
print(d) # 输出: {frozenset({1, 2}): 'A', frozenset({3, 4}): 'B'}

# frozenset 可以作为集合的元素
s = {frozenset([1, 2]), frozenset([3, 4])}
print(s) # 输出: {frozenset({1, 2}), frozenset({3, 4})}

# frozenset 支持集合运算(但不修改原集合)
fs1 = frozenset([1, 2, 3])
fs2 = frozenset([2, 3, 4])
print(fs1 & fs2) # 输出: frozenset({2, 3}) 交集
print(fs1 | fs2) # 输出: frozenset({1, 2, 3, 4}) 并集

运行结果预期:

{frozenset({1, 2}): 'A', frozenset({3, 4}): 'B'}
{frozenset({1, 2}), frozenset({3, 4})}
frozenset({2, 3})
frozenset({1, 2, 3, 4})

frozenset 的主要用途是作为字典的键或集合的元素。


Python3 内置函数 Python3 内置函数


AI 思考中...

点我分享笔记

  • 昵称 (必填)
  • 邮箱 (必填)
  • 引用地址

AltStyle によって変換されたページ (->オリジナル) /