05 2016 档案
摘要:一、set set集合,是一个无序且不重复的元素集合 1.创建 2.功能 class set(object): """ set() -> new empty set object set(iterable) -> new set object Build an unordered collectio
阅读全文
摘要:一、数据类型 int (整数型) 在32位机器上,整数的位数为32位,取值范围为-2**31~2**31-1,即-2147483648~2147483647 在64位系统上,整数的位数为64位,取值范围为-2**63~2**63-1,即-9223372036854775808~92233720368
阅读全文