1、https://www.cnblogs.com/AK2012/archive/2012/12/28/2012-122802.html 2、https://www.cnblogs.com/AK2012/archive/2012/12/28/2012-122803.html 3、https://ww ...
分类:
数据库 时间:
2020-01-19 09:31:37
阅读次数:
82
[TOC]一元类介绍插图:恶搞图47什么是元类呢?一切源自于一句话:python中一切皆为对象。让我们先定义一个类,然后逐步分析classStanfordTeacher(object):school=‘Stanford‘def__init__(self,name,age):self.name=nameself.age=agedefsay(self):print(‘%ssayswelcometoth
分类:
其他好文 时间:
2020-01-18 16:22:12
阅读次数:
76
1、在Run菜单中选到Eidt configuration 2、点击+添加local tomcat server 并选择到文件根目录 3、添加 artifacts marks 保存设置后启动即可 ...
分类:
其他好文 时间:
2020-01-16 01:04:34
阅读次数:
67
Cardiff School of Computer Science and InformaticsCoursework Assessment Pro-formaModule Code: CMT307Module Title: Applied Machine LearningAssessment T ...
分类:
其他好文 时间:
2020-01-10 20:02:15
阅读次数:
60
资料一、资料二: https://www.w3school.com.cn/js/js_date_formats.asp https://www.weizhixi.com/user/index/article/id/70.html 资料三: GMT和UTC GMT,即格林尼治标准时间,也就是世界时。G ...
分类:
其他好文 时间:
2020-01-10 12:27:41
阅读次数:
439
原文 Text 1Among the annoying challenges facing the middle class is one that will probably go unmentioned in the next presidential campaign: What happen ...
分类:
其他好文 时间:
2020-01-08 14:16:40
阅读次数:
435
打开xshell,提示评估已过期。对于这种问题,无需卸载当前版本 直接通过安装学生版就可以了,下载地址: https://www.netsarang.com/zh/free-for-home-school/ 填写信息,点击 “下载” 查看邮件收到的下载链接 Dear user, Thank you ...
分类:
系统相关 时间:
2020-01-06 19:28:59
阅读次数:
672
``` # 1添加数据二种方法 1.1 # school = School(name='吉利大学') # school.save() # 1.2 School.objects.create(name='吉利01') # 2 查询表里数据 2.1查询所有 # s = School.objects.al... ...
分类:
其他好文 时间:
2020-01-06 11:14:35
阅读次数:
97
CSS3(4) 动画(animation) 之前有写过过渡: "CSS3(2) 过渡(transition)" 个人理解两者不同点在于 只能指定属性的 开始值 与 结束值 ,然后在这两个属性值之间进行平滑过渡来实现动画效果,因此只能实现简单的动画效果。 除了定义 开始值 和 结束值 ,在这之间还可以 ...
分类:
Web程序 时间:
2020-01-05 00:33:05
阅读次数:
100
直接看代码: class Person: def __init__(self): self.name = "jack" class Student(Person): def __init__(self): self.school = "一中" stu = Student() print("学生的姓名 ...
分类:
编程语言 时间:
2020-01-03 09:16:37
阅读次数:
235