此处还是以Model::get()方法和Model::first()方法为例 ...
分类:
其他好文 时间:
2018-06-21 11:27:02
阅读次数:
122
Python 号称是最接近人工智能的语言,因为它的动态便捷性和灵活的三方扩展,成就了它在人工智能领域的丰碑 走进Python,靠近人工智能 一.编程语言Python的基础 之 "浅入浅出"不是不给你讲,而是重点在人工智能应用 1.变量 声明变量: 1 name = "DragonFire" # 声明 ...
分类:
编程语言 时间:
2018-06-21 01:45:35
阅读次数:
251
mybatis学习 http://www.mybatis.org/mybatis-3/zh/index.html Spring学习:http://blog.csdn.net/king1425/article/details/65631607 SpringMVC学习:http://blog.csdn. ...
分类:
其他好文 时间:
2018-06-21 01:36:27
阅读次数:
306
一.栈(stack) 1.后进先出,压入(push),弹出(pop) 2.栈顶 S[S.top] 操作,S.top指向最新压入的元素 1 #栈(stack) 2 class Stack: 3 def __init__(self,S=[]): 4 #初始化空栈,设置属性栈顶指针top和栈的列表表示 5 ...
分类:
其他好文 时间:
2018-06-21 00:04:07
阅读次数:
184
题目 有一个长度为n序列,移除掉里面的重复元素,对于每个相同的元素保留最后出现的那个。 比方说: [1,8,7,3,8,3,1] 返回: [7,8,3,1] 算法实现 方法一: 方法二: ...
分类:
其他好文 时间:
2018-06-20 22:30:31
阅读次数:
184
LOGIN_USER = {"is_login": False} def outer(func): def inner(*args, **kwargs): if LOGIN_USER['is_login']: r = func() return r else: print("请登陆... ...
分类:
其他好文 时间:
2018-06-20 21:33:20
阅读次数:
116
1. #include<stdio.h> #include<math.h> #include<windows.h> int right=0; int wrong=0; void add() { int a,b,c; a=rand()%100; b=rand()%100; printf("请回答:\n ...
分类:
其他好文 时间:
2018-06-20 18:39:49
阅读次数:
166
参考如下: 1、layui 官方文档 http://www.layui.com/doc/ 2、https://blog.csdn.net/huyanliang/article/details/77966610 3、http://m.zhengjinfan.cn/(演示地址)http://git.os ...
分类:
其他好文 时间:
2018-06-20 14:39:32
阅读次数:
1871
<!DOCTYPE html><html> <head> <title></title> <script type="text/javascript" src="../js/common.js"></script> </head> <body> <span id="a666"></span> <sc ...
分类:
其他好文 时间:
2018-06-20 14:26:35
阅读次数:
178