文章分类 - Python
摘要:Centos上面默认的Python版本是2.6,本文介绍如何安装3.4版本。 0.下载前准备 需要安装以下库,不然会有问题。 yum y install zlib devel bzip2 devel openssl devel ncurses devel sqlite devel readline
阅读全文
摘要:python在安装时,默认的编码是ascii,当程序中出现非ascii编码时,python的处理常常会报这样的错UnicodeDecodeError: 'ascii' codec can't decode byte 0x?? in position 1: ordinal not in range(1...
阅读全文
摘要:python的set和其他语言类似, 是一个无序不重复元素集, 基本功能包括关系测试和消除重复元素. 集合对象还支持union(联合), intersection(交), difference(差)和sysmmetric difference(对称差集)等数学运算.sets 支持 x in set,...
阅读全文