miao

Python类的继承

女生的网名这么多〃 提交于 2019-12-29 08:05:32
基本概念 面向对象三要素之一:继承inheritance。人类和猫类都是继承自动物类。 个体继承自父母,继承了父母的一部分特征,但也可以有自己的个性。在面向对象的世界中,从父类继承,就可以直接拥有父类的属性和方法,这样可以减少代码,多复用。子类可以定义自己的属性和方法。 先看一个不用继承的例子: class Animal: def shout(self): print("Animal shouts") a = Animal() a.shout() class Cat: def shout(self): print("cat shouts") c = Cat() c.shout() 结果为: Animal shouts cat shouts 上面的两个类虽然有关系,但是定义时并没有建立这种关系,而是各自完成定义。 动物类和猫类都有吃,但是它们的吃有区别,所以分别定义。 class Animal: def __init__(self,name): self._name = name def shout(self):#一个通用的吃方法 print("{} shouts".format(self.__class__.__name__)) @property def name(self): return self._name a = Animal("monster") a.shout()

Python类的继承

懵懂的女人 提交于 2019-12-03 10:14:26
基本概念 面向对象三要素之一:继承inheritance。人类和猫类都是继承自动物类。 个体继承自父母,继承了父母的一部分特征,但也可以有自己的个性。在面向对象的世界中,从父类继承,就可以直接拥有父类的属性和方法,这样可以减少代码,多复用。子类可以定义自己的属性和方法。 先看一个不用继承的例子: class Animal: def shout(self): print("Animal shouts") a = Animal() a.shout() class Cat: def shout(self): print("cat shouts") c = Cat() c.shout() 结果为: Animal shouts cat shouts 上面的两个类虽然有关系,但是定义时并没有建立这种关系,而是各自完成定义。 动物类和猫类都有吃,但是它们的吃有区别,所以分别定义。 class Animal: def __init__(self,name): self._name = name def shout(self):#一个通用的吃方法 print("{} shouts".format(self.__class__.__name__)) @property def name(self): return self._name a = Animal("monster") a.shout()

js小案例----距离某一天还剩多少天

匿名 (未验证) 提交于 2019-12-02 23:55:01
距离某一天还剩多少天,JS案例,其实挺简单的,但我卡在某个地方了,好久才想明白 这里面有个需要将毫秒数转化为天时分秒的过程,莫名其妙的卡在了这里,我真是太笨了; function mschange ( num ) { var num1 = parseInt ( num / 1000 ); var miao = parseInt ( num1 % 60 ); //秒 var minute = parseInt (( num1 / 60 ) % 60 ); //分 var hour = parseInt (( num1 / 60 / 60 ) % 24 ); //Сʱ var day = parseInt ( num1 / 60 / 60 / 24 ); //天 return { 'miao' : miao , 'minute' : minute , 'hour' : hour , 'day' : day } } 上面代码是将毫秒转化为天时分秒,一不小心卡在了这里,后来才想明白是单位的问题;好了以下是案例的完整代码 <!DOCTYPE html> <html lang = "en" > <head> <meta charset = "UTF-8" > <meta name = "viewport" content = "width=device-width, initial-scale

Contest1780 - 2019年我能变强组队训练赛第十八场

☆樱花仙子☆ 提交于 2019-11-30 05:45:55
题目描述 wls有一个钟表,当前钟表指向了某一个时间。 又有一些很重要的时刻,wls想要在钟表上复现这些时间(并不需要依次复现)。我们可以顺时针转动秒针,也可以逆时针转动秒针,分针和时针都会随着秒针按规则转动,wls想知道秒针至少转动多少角度可以使每个时刻至少都会被访问一次。 注意,时钟上的一种时针分针秒针的组合,可以代表两个不同的时间。 输入 第一行一个整数n代表有多少个时刻要访问。 第二行三个整数h,m,s分别代表当前时刻的时分秒。 最后n行每一行三个整数hi,mi,si代表每个要访问的时刻的时分秒。 1≤n≤86,400 0≤h,hi<24 0≤m,mi,s,si<60 输出 输出一行一个数代表秒钟转的角度,答案保留两位小数。 样例输入 复制样例数据 1 0 1 0 0 1 1 样例输出 6.00 Contest1780 - 2019年我能变强组队训练赛第十八场 clock 题解:把时间排序去重后进行顺时针及逆时针的暴力; 例如顺时针暴力是:枚举每一个点,让开始时间先顺时针到这个点,再逆时针从这个点到这个点的下一个点; 逆时针暴力和顺时针差不多,只是把方向都换一下就好,就是先让开始时间先逆时针到一个点,再顺时针从这个点到下一个 #include <bits/stdc++.h> using namespace std; typedef long long ll; const

刷新网页跳转锚点

大憨熊 提交于 2019-11-30 03:18:36
html中: <a name="miao" > <b>{{ $v->department_name }}</b></a> js跳转锚点: window.onload=function(){ location.hash='miao'; } html中: <a name="miao" > <b>{{ $v->department_name }}</b></a> js跳转锚点: window.onload=function(){ location.hash='miao'; } 来源: https://www.cnblogs.com/best-coder/p/11550177.html

SDNU 1224.Tom'problem B(迪杰斯特拉)

时光总嘲笑我的痴心妄想 提交于 2019-11-29 21:50:13
Description Tom is a student in Shan Dong Normal University! his University in the suburbs,this day,Tom wanted to go to the downtown to visit his old friend Jerry,But tom faced a problem ,he want to know how to reach the city center fastest,now the bus stations of city are n[2,100], there are m[1,1000] bus routes in the city Tom in the 1st bus station,Jerry in the Nth bus station Input The fist line is m,n; Next m lines is a,b,c (a,b is the name of bus station , c is the time you cost from station a to station b) Output The shortest time tom reach city center Sample Input 1 2 1 2 10 3 4 1 2 10

html锚点

谁都会走 提交于 2019-11-29 01:47:20
设置锚点的两种方式 1.设置一个锚点链接<a href="#wang">汪星人</a> 在页面中需要的位置设置锚点<a name="wang">基地</a> 2.设置一个锚点链接<a href="#miao">喵星人</a> 在页面中需要的位置设置锚点<h3 id="miao">基地</h3> 如果页面跳转只需要在#前面加上路径即可 例如:第一个页面:设置一个锚点链接<a href="new.html#miao">去找喵星人</a> 另一个页面 new.html ,在页面中需要的位置设置锚点<a name="miao">喵星人基地</h3> 来源: https://www.cnblogs.com/1212dsa/p/11438335.html

SDNU 1136.Balloons(BFS)

倖福魔咒の 提交于 2019-11-28 13:39:49
Description Both Saya and Kudo like balloons. One day, they heard that in the central park, there will be thousands of people fly balloons to pattern a big image. They were very interested about this event, and also curious about the image. Since there are too many balloons, it is very hard for them to compute anything they need. Can you help them? You can assume that the image is an N*N matrix, while each element can be either balloons or blank. Suppose element A and element B are both balloons. They are connected if: i) They are adjacent; ii) There is a list of element C1, C2, … , Cn, while