随笔分类 -  Python常用方法

上一页 1 ··· 3 4 5 6 7 8 9 10 11 12 下一页

收藏了一些好的文章以及教程 Python(英国发音:/ˈpaɪθən/ 美国发音:/ˈpaɪθɑːn/), 是一种面向对象的解释型计算机程序设计语言,由荷兰人Guido van Rossum于1989年发明,第一个公开发行版发行于1991年。 Python是纯粹的自由软件, 源代码和解释器CPython遵循 GPL(GNU General Public License)协议[1] 。
豆瓣源安装requirements.txt
摘要:豆瓣源安装requirements.txt pip install -i https://pypi.doubanio.com/simple/ -r requirements.txt 阅读全文

posted @ 2018-08-13 18:08 星河赵 阅读(781) 评论(0) 推荐(0) 编辑

一个有趣的python排序模块:bisect
摘要:今天同事说到了一个python的排序模块bisect,觉得挺有趣的,跟大家分享分享。 先看看模块的结构: 前面五个属性大家感兴趣可以打出来看看数值,这里就不介绍了。 先说明的是,使用这个模块的函数前先确保操作的列表是已排序的。 先看看 insort 函数: 其插入的结果是不会影响原有的排序。 再看看 阅读全文

posted @ 2018-08-13 16:16 星河赵 阅读(10364) 评论(0) 推荐(1) 编辑

Python 多线程
摘要:yeayee >更多技巧 >更多源码 >www.yeayee.com Python 一篇学会多线程 多线程和多进程是什么自行google补脑,廖雪峰官网也有,但是不够简洁,有点晕,所以就整个简单的范例。 对于python 多线程的理解,我花了很长时间,搜索的大部份文章都不够通俗易懂。所以,这里力图用 阅读全文

posted @ 2018-08-10 16:23 星河赵 阅读(365) 评论(0) 推荐(0) 编辑

python list元素为dict时的排序
摘要:# 简单的dict lst = [('d', 2), ('a', 4), ('b', 3), ('c', 2)] # 按照value排序 lst.sort(key=lambda k: k[1]) print lst # 按照key排序 lst.sort(key=lambda k: k[0]) print lst # 先按value排序再按key排序 lst.sort(key=lambda ... 阅读全文

posted @ 2018-08-02 16:13 星河赵 阅读(499) 评论(0) 推荐(0) 编辑

python版本坑:md5例子(python2与python3中md5区别)
摘要:对于一些字符,python2和python3的md5加密出来是不一样的. Python2 和Python3MD5加密 阅读全文

posted @ 2018-08-01 10:07 星河赵 阅读(6790) 评论(0) 推荐(0) 编辑

type、object和class的关系
摘要: 阅读全文

posted @ 2018-07-30 15:18 星河赵 阅读(118) 评论(0) 推荐(0) 编辑

单独的 python 脚本文件使用 django 自带的 model
摘要:django1.9.5&python3.4.4 文件结构 在一个爬虫脚本中将爬取的数据通过django自带的model保存到数据库 修改的文件(其余pycharm新建Django项目生成,未修改): # testapp/models.py from django.db import models c 阅读全文

posted @ 2018-07-30 10:01 星河赵 阅读(1300) 评论(0) 推荐(0) 编辑

python 获取环境变量
摘要:python 获取环境变量 参考 https://docs.python.org/2/library/os.html 使用os.environ获取环境变量字典 阅读全文

posted @ 2018-07-02 14:38 星河赵 阅读(31225) 评论(0) 推荐(1) 编辑

Python字符串、时间戳、datetime时间相关转换
摘要:总结的时间转换函数 # datetime时间转为字符串 def Changestr(datetime1): str1 = datetime1.strftime('%Y-%m-%d %H:%M:%S') return str1 # 字符串时间转为时间戳 def Changetime(str1): Un 阅读全文

posted @ 2018-06-17 18:43 星河赵 阅读(594) 评论(0) 推荐(0) 编辑

【Python学习笔记】-冒泡排序、插入排序、二分法查找
摘要:原文出处:https://blog.csdn.net/yort2016/article/details/68065728 冒泡排序 主要是拿一个数与列表中所有的数进行比对,若比此数大(或者小),就交换位置 运行上面的代码会发现最大的已经跑到最后一个位置了,那再加一次循环,循环列表的长度的次数,就可以 阅读全文

posted @ 2018-06-12 12:06 星河赵 阅读(250) 评论(0) 推荐(0) 编辑

python 字符串编码 str和unicode 区别以及相互转化 decode('utf-8') encode('utf-8')
摘要: 阅读全文

posted @ 2018-06-04 14:01 星河赵 阅读(638) 评论(0) 推荐(0) 编辑

Python 操作redis 常用方法
摘要:Python 操作redis 1.字符串 2.列表 3.集合 4.散列 阅读全文

posted @ 2018-06-01 19:11 星河赵 阅读(536) 评论(0) 推荐(0) 编辑

关于Python中深拷贝与浅拷贝的理解(一)---概念
摘要:输出为:a = [1, 2, 3, 4, ['a', 'b', 'c'], 5] b = [1, 2, 3, 4, ['a', 'b', 'c'], 5] c = [1, 2, 3, 4, ['a', 'b', 'c']] d = [1, 2, 3, 4, ['a', 'b']] 阅读全文

posted @ 2018-05-28 17:08 星河赵 阅读(126) 评论(0) 推荐(0) 编辑

python2 和 python3 区别
摘要:python2 阅读全文

posted @ 2018-05-21 18:21 星河赵 阅读(168) 评论(0) 推荐(0) 编辑

使用pip安装包提示TLS证书错误解决办法
摘要:最近有不少同学在使用pip安装python包的时候,经常会出现以下类似的错误: 出现这个错误的原因是python.org已经不支持TLSv1.0和TLSv1.1了。更新pip可以解决这个问题。但是如果使用传统的python -m pip install --upgrade pip的方式,还是会出现那 阅读全文

posted @ 2018-05-21 10:12 星河赵 阅读(713) 评论(0) 推荐(0) 编辑

Python 连接数据库 mysql
摘要:python 连接 数据库 阅读全文

posted @ 2018-05-13 00:01 星河赵 阅读(218) 评论(0) 推荐(0) 编辑

Python进行URL解码
摘要:所用模块:urllib 所用函数:urllib.unquote() 案例 输出 问题扩展 urllib.unquote()目的是对url编码进行解码,与该函数对应的是编码函数urllib.quote() 通常如果一样东西需要编码,说明这样东西并不适合传输。原因多种多样,如Size过大,包含隐私数据。 阅读全文

posted @ 2018-05-03 10:44 星河赵 阅读(4319) 评论(0) 推荐(0) 编辑

Python 执行linux 命令
摘要:2.os.popen # 该方法不但执行命令还返回执行后的信息对象 popen(command [, mode='r' [, bufsize]]) -> pipeOpen a pipe to/from a command returning a file object. tmp = os.popen 阅读全文

posted @ 2018-05-02 14:25 星河赵 阅读(515) 评论(0) 推荐(0) 编辑

python unicode to str and str to unicode
摘要:@staticmethod def unicode2str(p_unicode): v = p_unicode.encode('unicode-escape').decode('string_escape') if p_unicode is not None else None return v @staticmethod def... 阅读全文

posted @ 2018-04-27 18:09 星河赵 阅读(202) 评论(0) 推荐(0) 编辑

UnicodeDecodeError: 'ascii' codec can't decode byte 0xa3 in position 1: ordinal not in range(128)
摘要:使用codecs模块 codecs模块能在处理字节流的时候提供很大帮助。你可以用定义的编码来打开文件并且你从文件里读取的内容会被自动转化为Unicode对象。 试试这个: 阅读全文

posted @ 2018-04-20 19:42 星河赵 阅读(379) 评论(0) 推荐(0) 编辑

上一页 1 ··· 3 4 5 6 7 8 9 10 11 12 下一页

导航