class olper:
sch = ‘oldboy‘
def __init__(self, name, age, sex):
self.name = name
self.age = age
self.sex = sex
def tell__info(self):
print(‘名字:<%s> 年龄:<%s> 性别:<%s>‘ %(self.name,self.age,self.sex))
class olstu(olper):
def learn(self):
print(‘%s is learing‘ % self.name)
def tell__info(self):
print(‘wo is stu‘,end=‘‘)
print(‘名字:<%s> 年龄:<%s> 性别:<%s>‘ %(self.name,self.age,self.sex))
clas
分类:
其他好文 时间:
2018-09-25 21:52:31
阅读次数:
162
真っ白に透けた 羽根を閉じたまま masshiro ni su ke ta bane wo to ji ta ma ma ...
分类:
其他好文 时间:
2018-09-25 17:29:47
阅读次数:
159
设计workflow时候,如果通过代码向向工作流传入数据,则使用代码流CodeActivity类型的活动,如果有想要加入书签,则需要使用NaviteActivity类型的活动。创建工作流的同时给工作流数据。 public partial class Form1 : Form { private Wo ...
分类:
其他好文 时间:
2018-09-23 13:34:09
阅读次数:
266
小白博主最近想参加一个关于NLP的比赛,于是入坑自然语言处理,想借博客一边学习,一边整理 首先安装库nltk,直接pip install nltk即可 这样,证明库已安装,接下来便可以开始我们的学习了: 搜索文本 1.关键词索引:text1.concordance("words") 从文中找到该wo ...
分类:
编程语言 时间:
2018-09-20 11:08:32
阅读次数:
175
1. Two Sum Given an array of integers, return indices of the two numbers such that they add up to a specific target. You may assume that each input wo ...
分类:
其他好文 时间:
2018-09-15 15:21:26
阅读次数:
159
#hashlib模块:一种算法
#1.内容相同则hash运算结果相同,内容一有改变则hash值则变
#2.不可逆推
#3.相同算法:无论校验多长的数据,得到的hash值长度固定
import hashlib
m=hashlib.md5()
m.update(‘hello‘.encode(‘utf-8‘)) #update往m里写值
m.update(‘word‘.encode(‘utf-8‘))
print(m.hexdigest()) #hexdigest查看md5值
m1=hashlib.md5()
m1.update(‘hello‘.encode(‘utf-8‘)) #update往m里写值
m1.update(‘wo‘.encode(‘utf-8‘))
m1.update(‘rd‘.encode(‘utf-8‘))
print(m1.hexdigest()) #hexdigest查看md5值,m和m1的md5值一样,保证文件一致性。
分类:
其他好文 时间:
2018-09-13 23:12:47
阅读次数:
203
Author:HUYUE#break结束整个循环,退出循环#continue跳出本次循环foriinrange(0,10,2):#2是步长print("wo")foriinrange(10):print(i)forjinrange(10):print(j)ifj>5:breaks=input("输入:")i=5forjinrange(0,10,1):i
分类:
其他好文 时间:
2018-09-09 14:50:25
阅读次数:
159
题目如下: 解题思路:对于任意一个word,要找出在wordlist中是否存在与之能组成回文的其他words,有两种思路。一是遍历wordlist;二是对word本身进行分析,找出能组成回文的words,并判断是否存在于wordlist中。显然,第二种思路比较的次数要少很多。怎么找出能组成回文的wo ...
分类:
其他好文 时间:
2018-09-01 12:33:01
阅读次数:
141
while循环 aa = 100 bb = 0 cc = 1 while cc >>")) print("你输入的数字是>>>",b) print("good bye!") while 循环使用else语句 count = 0 while count >>",wo) a = 100 while a ... ...
分类:
其他好文 时间:
2018-08-27 12:34:42
阅读次数:
133
第1章 Spring Boot 简介 1-1 Spring Boot 博客_课程导学 1-2 Spring Boot 是什么第2章 开启 Spring Boot 的第一个 Web 项目 2-1 -初始化第一个Web项目 2-2 -用Gradle编译项目 2-3 -探索项目第3章 一个Hello Wo ...
分类:
编程语言 时间:
2018-08-22 20:38:02
阅读次数:
187