## dumps 、loads是字段和json相互转换d = {"nhy":"123456","ylm":"456789","abc":123,'bcd':'哈哈哈','sdfsd':'sdfs'} res = json.dumps(d,indent=4,ensure_ascii=False) #把 ...
分类:
编程语言 时间:
2019-04-18 21:54:02
阅读次数:
202
一、什么是认证 只有认证通过的用户才能访问指定的url地址,比如:查询课程信息,需要登录之后才能查看,没有登录,就不能查看,这时候需要用到认证组件 二、利用token记录认证过的用户 1、什么是token token是服务端生成的一串字符串,以作客户端进行请求的一个令牌,当第一次登录后,服务器生成一 ...
分类:
其他好文 时间:
2019-04-17 00:19:56
阅读次数:
144
一、基础函数 1. 二、json文件函数 1. json.dumps():将Python对象编码成JSON字符串 json.dumps(obj, skipkeys=False, ensure_ascii=True, check_circular=True, allow_nan=True, cls=N ...
分类:
其他好文 时间:
2019-03-23 22:52:20
阅读次数:
226
在python使用过程中,输入中文,不能正常的输出,可以使用ensure_ascii参数来解决不能输入中文的问题 代码块: import json friends={"name":"王虎","name1":"张二","name2":"姚晨"}print(json.dumps(friends)) 执行 ...
分类:
编程语言 时间:
2019-03-21 20:15:05
阅读次数:
210
1、使用puppet去安装nginxvinginx.ppclassnginx::install{package{"nginx"ensure=>installed,provider=>yum}}2、shell脚本,九九乘法表vishell.sh#!/bin/basha=1while[$a-le9]dob=1while[$b-le$a]doecho-n-e"$
分类:
其他好文 时间:
2019-03-14 15:07:59
阅读次数:
136
Neutron的整体架构分为三层。 Server —> plugin —>agent 启动server之后neutron会将请求路径和对应的处理函数进行映射。 具体的处理函数由plugin来提供,plugin做的事情有两个: 1)在数据库中创建资源 2)发送rpc请求到具体的agent 所有的plu ...
分类:
Web程序 时间:
2019-03-13 21:28:10
阅读次数:
746
想要实现一个抽牌的功能,有很多种实现方法,这时候我们创造一个对象,通过内置方法来完成这个功能: 同时拓展一下,如果要实现一个人员信息统计,但是每年人员的姓名性别等信息不会变,变的只是年龄等信息,那么我们再录入信息的时候,为了防止系统里的对象重复或占用内存空间,我们就需要对信息进行自动录入刷新,这时候 ...
分类:
编程语言 时间:
2019-02-28 18:13:21
阅读次数:
456
1001 A+B Format (20 分) Calculate a+b and output the sum in standard format -- that is, the digits must be separated into groups of three by commas (un ...
分类:
其他好文 时间:
2019-02-26 19:17:43
阅读次数:
187
1038 Recover the Smallest Number (30 分) Given a collection of number segments, you are supposed to recover the smallest number from them. For example, ...
分类:
其他好文 时间:
2019-02-26 13:24:23
阅读次数:
201
monoids is a semi-group with a neutral element. A semigroup, it does not have an element to return so it's not a safe operation, whereas with the mono ...
分类:
Web程序 时间:
2019-02-24 21:24:46
阅读次数:
149