上一页 1 ··· 8 9 10 11 12 13 14 下一页
摘要: https://www.douban.com/note/205693536/ 源码安装一下curl 其二 pycurl: libcurl link-time version (7.19.7) is older than compile-time version (7.24.0) cp /usr/lo 阅读全文
posted @ 2018-11-07 15:44 茫茫碧落 阅读(111) 评论(0) 推荐(0) 编辑
摘要: http://bbs.51cto.com/thread-1126772-1.html python2.6 sysconfig不是一个独立的模块,只能这样用 from distutils import sysconfig 阅读全文
posted @ 2018-11-07 09:45 茫茫碧落 阅读(2182) 评论(0) 推荐(0) 编辑
摘要: 首先说一下有一些坑,PIL是一个图像处理库,但是因为年久失修,所以有志愿者编写了PIL的升级版pillow,但是有的时候有一些问题,主要表现在只能from Image而不能import Image 所以有的时候必须安装PIL,而PIL需要源码安装才行, http://pythonware.com/p 阅读全文
posted @ 2018-11-06 20:43 茫茫碧落 阅读(1279) 评论(0) 推荐(0) 编辑
摘要: 我想写一个datetime模块的实验脚本,然后我先命名成datetime.py,import出问题了,查找了半天错误也没找到,最后上贴吧问别人被提醒了,特此写一篇文章警告自己希望以后一定要注意,千万不要将文件名命名成为和模块相同,前车之鉴不能再犯 阅读全文
posted @ 2018-11-03 03:21 茫茫碧落 阅读(370) 评论(0) 推荐(0) 编辑
摘要: Implement pow(x, n), which calculates x raised to the power n (xn). Example 1: Example 2: Example 3: Note: -100.0 < x < 100.0 n is a 32-bit signed int 阅读全文
posted @ 2018-11-02 11:45 茫茫碧落 阅读(156) 评论(0) 推荐(0) 编辑
摘要: 我现在主要学的python,会一点c++,这两个语言可以说是leetcode上面最好做题目的语言了,c++有现成的stl可以用,python由于语言特性的问题自然是很方便; 个人感觉做算法题主要是思路,语言并不重要 用python做题还有一点“好处”,只要算法复杂度不对基本不能通过,其他语言可能还会 阅读全文
posted @ 2018-11-02 11:14 茫茫碧落 阅读(648) 评论(0) 推荐(0) 编辑
摘要: Given a sorted array and a target value, return the index if the target is found. If not, return the index where it would be if it were inserted in or 阅读全文
posted @ 2018-11-02 10:52 茫茫碧落 阅读(115) 评论(0) 推荐(0) 编辑
摘要: Implement strStr(). Return the index of the first occurrence of needle in haystack, or -1 if needle is not part of haystack. Example 1: Example 2: Cla 阅读全文
posted @ 2018-11-02 10:18 茫茫碧落 阅读(113) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/fx677588/article/details/72357389 https://blog.csdn.net/hyqsong/article/details/49429859 前面的两种是递归和非递归的实现,图文并茂,写的很好 后面的方法二和三可以拓展思 阅读全文
posted @ 2018-11-02 09:50 茫茫碧落 阅读(109) 评论(0) 推荐(0) 编辑
摘要: 打包 打包中,16代表的是字节串中元素的数量,一个元素指的是\x12这样的单元,"big"表示大头在前也就是正常顺序,“litte”表示小头在前也就是逆序,大头的\x12\x34写成小头就是\x34\x12,signed 表示的是是否有符号位,默认为False,如果为True,那么默认按照补码进行编 阅读全文
posted @ 2018-11-01 13:47 茫茫碧落 阅读(335) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 下一页