
python
一口一个嘤嘤怪
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
*.whl is not a supported wheel on this platform. 解决办法
在安装lxml的时候遇到了lxml-4.2.3-cp27-cp27m-win32.whl is not a supported wheel on this platform.仔细一看发现两个错误, 1. cp27代表CPython2(我们到官网下载的python默认下载的都是CPython),而本机使用的是python3.6.5 2. win32代表32位windows操作...原创 2018-07-09 10:28:14 · 1447 阅读 · 0 评论 -
Python 之 global用法
Python 之 global用法 废话不说,直接看代码代码1# coding: utf-8age = 18def happy_birthday(): print "age {}, happy birthday ~".format(age)happy_birthday()print "your age is {}".format(age)输出结果:...原创 2018-07-28 17:09:30 · 14671 阅读 · 0 评论 -
Python Threading 多线程之 print
Python Threading 多线程之 print 在实例中,发现一个关于print的问题,尚未得到答案,记录下来,等待答案揭晓的一天 代码1实例代码:# coding:utf-8import threadingimport timedef action(arg): time.sleep(1) print '[sub thread name] {...原创 2018-07-28 10:57:47 · 5979 阅读 · 0 评论