摘要:
python - how to sort overview Key function (★★★★★) OPerator module functions asc and desc 升序和降序 Overview 对于python 列表,有一个方法 list.sort() ,另外还有一个内置函数sort 阅读全文
摘要:
python 3字符编码 官方链接:http://legacy.python.org/dev/peps/pep-0263/ 在Python2中默认是ascii编码,Python3是utf-8编码 在python 的源代码文件中经常会看到: 阅读全文
摘要:
python 数据类型 datatype 列表list 元组tuple 集合set 字典dictionary 字符串string 一、列表list list :python的一种数据类型。是可变的,有序的对象。可以删除和增加元素。 1 列表常用的几种方法 list.append(x) list.ex 阅读全文
摘要:
在一台新的服务器上x需要先安装python3 ,git , 等 安装python3 安装python3 之前博客写过 创建虚拟环境,我用的是venv https://docs.python.org/3/library/venv.html 首先创建一个空目录 在linux 启动虚拟环境是 pip3安装 阅读全文
摘要:
折腾 Python官网: https://www.python.org/ 查看相关评论,众人大呼python2与python3为两种语言,既然继承性不大,那我也就直接学python3了。 在系统选择,也挑了一个困难路线,装在Linux的系统,CentOS里。 也就不废话了,下面正题。 编译安装 py 阅读全文
摘要:
关于mysql数据库优化 以我之愚见,数据库的优化在于优化存储和查询速度 目前主要的优化我认为是优化查询速度,查询速度快了,提高了用户的体验 我认为优化主要从两方面进行考虑, 优化数据库对象, 优化sql 优化数据库对象 1.优化表的数据类型,对于每个字段用合适的数据类型,既能解决磁盘的存储空间,又 阅读全文
摘要:
首先要理解一个概念 MAC (message authenticate code) 消息认证码(带密钥的Hash函数):密码学中,通信实体双方使用的一种验证机制,保证消息数据完整性的一种工具。 构造方法由M.Bellare提出,安全性依赖于Hash函数,故也称带密钥的Hash函数。消息认证码是基于密 阅读全文
摘要:
>>> s='alex egon alex yuyang yuyang yuyang' >>> s_ls = s.split() >>> s_ls ['alex', 'egon', 'alex', 'yuyang', 'yuyang', 'yuyang'] >>> dic = {} >>> for i in s_ls: if i not in dic: dic[i]=1 ... 阅读全文
摘要:
bottle框架剖析 使用 源码分析 一、使用 大致有以下几部分 quick start request routing generate contents request Data templates quick start 下载: pip install bottle visit http:// 阅读全文
摘要:
First, let me reiterate the main points in Alex’s post: The default implementation is useless (it’s hard to think of one which wouldn’t be, but yeah) 阅读全文