fix bugs in python_base.py

master
xianhu 2016-12-17 22:40:24 +08:00
parent 5f2191a1fb
commit e86a926e81
1 changed files with 1 additions and 1 deletions

View File

@ -98,7 +98,7 @@
#-- 集合frozenset不可变对象 #-- 集合frozenset不可变对象
""" """
set是可变对象即不存在hash值不能作为字典的键值同样的还有listtuple等 set是可变对象即不存在hash值不能作为字典的键值同样的还有list(tuple是可以作为字典key的)
frozenset是不可变对象即存在hash值可作为字典的键值 frozenset是不可变对象即存在hash值可作为字典的键值
frozenset对象没有addremove等方法但有union/intersection/difference等方法 frozenset对象没有addremove等方法但有union/intersection/difference等方法
""" """