Number数据类型 Number类型使用 "IEEE754" 格式来表示整数和浮点值,这也是 不等于 的原因, 最基本的数值类型字面量格式是十进制整数 1. 浮点数值 2. NaN :不是一个数,但它属于数值类型 NaN的特点 NaN和任何值进行操作都会返回NaN NaN与任何值都不相等,包括Na ...
分类:
Web程序 时间:
2019-10-03 10:57:11
阅读次数:
334
``` n = 4 # 以4皇后举例 result = [] # 放置互斥的列、左斜线、右斜线信息 cols= set() pie = set() na = set() def dfs(row, state): if row >= n: result.append(state) for col in... ...
分类:
其他好文 时间:
2019-09-30 16:38:49
阅读次数:
112
Humans are not designed to be happy, or even content. Instead, we are designed primarily to survive and reproduce, like every other creature in the na ...
分类:
其他好文 时间:
2019-09-26 09:27:58
阅读次数:
108
共同点:他们3个都是用来改变函数调用时的上下文(context)而存在的,换句话说,就是为了改变函数体内部 this 的指向 1.call与apply作用是一样的,都是改变此次函数调用时this的指向,但是在传参时有一些区别 function Person(name){ this.name = na ...
分类:
移动开发 时间:
2019-09-25 00:40:00
阅读次数:
137
一、pymysql模块安装pip3 install pymysql二、连接数据库2.1、创建测试数据mysql> create database AA;mysql> use AAmysql> create table test(id int primary key auto_increment,na... ...
分类:
数据库 时间:
2019-09-22 10:21:15
阅读次数:
145
原文转自:https://www.cnblogs.com/zhaoweihang/p/9698852.html <field name="partner_id" string="Customer" widget="res_partner_many2one" context="{'default_na ...
分类:
其他好文 时间:
2019-09-22 01:17:59
阅读次数:
554
1 /// <summary> 2 /// 根据文件模板生成excel 3 /// </summary> 5 /// <param name="dttew">利润表_月报</param> 11 /// <param name="opetes">文件名</param> 12 /// <param na... ...
分类:
数据库 时间:
2019-09-21 19:00:23
阅读次数:
112
1,检查防火墙入站规则,查看本地端口状态 cmd 命令:netstat -na 2:远程连接测试 cmd 命令:telnet IP Port ,如:telnet 127.0.0.1 135 ,连接成功会显示如下窗口 ...
分类:
Web程序 时间:
2019-09-21 18:52:52
阅读次数:
114
什么是Bom? Bom是浏览器对象。有哪些常用的Bom属性呢? (1)location对象 location.href 返回或设置当前文档的URL location.search 返回URL中的查询字符串部分。例如 http://www.dreamdu.com/dreamdu.php?id=5&na ...
分类:
其他好文 时间:
2019-09-21 13:06:53
阅读次数:
184
一、绑定方法 特殊之处:绑定给谁就是谁来调用,并且会把自身传过去 1.1 对象绑定方法 用来修改对象 1.2 类绑定方法 绑定给类,类来调用,会把类自身传过去(拿到一个类就得到一个对象) class Person: def __init__(self,name,age) self.name = na ...
分类:
其他好文 时间:
2019-09-16 19:45:28
阅读次数:
71