wd

孙晓宇-20180912-3 词频统计

妖精的绣舞 提交于 2019-11-29 23:37:40
此作业的要求参见[https://edu.cnblogs.com/campus/nenu/2019fall/homework/6583] 代码:https://e.coding.net/sxy504/cipin.git 以下均是我总结出的对我而言的重难点:(1).py文件转化为.exe文件(2)python打开文件;(3)将文件中的标点等特殊符号去掉;(4)统计每个单词的频率并存放在字典;(5)文件数量的查找及文件路径的判断等。 功能1 小文件输入。 为表明程序能跑,结果真实而不是迫害老五,请他亲自键盘在控制台下输入命令。 代码: def rd_file(xgc): try: f = open(xgc, 'r') except IOError as s: print(s) return None bf = f.read() f.close() stat(bf) def stat(bf): if bf: wd_fd = {0} bf = bf.lower() for i in '!"#$%^&*()_+-=~`:;{}[]\|<>,.?/': bf = bf.lower().replace(i, " ") wds = bf.strip().split() a = 0 a += len(wds) print("a:"+str(a)) for wd in wds: wd_fd[wd] =

自动化端对端测试框架-Protractor Reference 3

不问归期 提交于 2019-11-29 00:02:23
Upgrading from Jasmine 1.3 to 2.x First, please read Jasmine's official upgrade documentation . In your conf file Specify that you want to use jasmine2.x: exports.config = { // Specify you want to use jasmine 2.x as you would with mocha. Note, 'jasmine' by default will use the latest jasmine framework. framework: 'jasmine'}; Similar to jasmine 1.3, you may include jasmineNodeOpts in the config file. However, because we changed the runner from " https://github.com/juliemr/minijasminenode " to " https://github.com/jasmine/jasmine-npm ", the options have changed slightly. In particular, we will

域名生成

无人久伴 提交于 2019-11-28 20:10:15
# 域名生成:import string''' 1.可以生成hg000.com 2.重在数字的添加 '''def f1(): input_wd = input('请输入要生成网站的关键字:') for i in range(1111, 10000): print('00' + str(i) + input_wd + '.com') print(input_wd + str(i) + '.com') print(str(i) + input_wd + '.com')''' 1. 该方法可生成类似hga.com/hgb.com的域名 2.从a到z 字母的添加'''def f2(): input_wd = input('请输入要生成网站的关键字:') for word in string.ascii_lowercase: domain_list = input_wd + word + '.com' + '\n' for domain in domain_list: print(domain, end='')def f3(): input_wd = input('请输入要生成网站的关键字:') for i in range(1, 10000): if i < 10: domain = input_wd + '0' + str(i) + '.com' elif i <= 100:

WD align

倖福魔咒の 提交于 2019-11-28 08:19:08
/* from: http://bbs.ylmf.net/forum.php?mod=viewthread&tid=1610570 */ 最近入手了搭载Advance Format的WD1.5TB EARS硬碟,才开始注意Advance Format这东西,花了点时间研读一下WD本身和Anandtech.com上的说明,才搞清楚因应的措施。虽然之前站上已经有些朋友在该款硬碟的讨论串里做了颇详细的说明,不过敝人还是希望能独立出一篇供初次使用的朋友参考,如有错误,也请不吝指教。 懒的看说明的朋友可以直接跳到红字部份决定何时该使用WD Align。 说明: Advanced Format只是WD称呼实体磁区(Sector)配置为4096Byte(4kByte)的硬碟,一般传统硬碟的实体磁区配置为512Byte。 问题点: 所有Win5.x的作业系统(2k, xp, 2k3, WHS)都对实体4k的磁区配置(Physical 4k Sector)没有任何概念,因为Win2k发行时这个议题的讨论还不是非常成熟,加上所有Win5.x的作业系统在分割第一个Partition的时候都习惯从LBA63开始,导致在Advance Format的硬碟上分割磁区时产生偏差。 简单的说,假设有一排长方形的柜子(每个柜子=4kB),每个柜子里有八个格子(每个格子=512B),Win5

WD HC510 不能被识别

∥☆過路亽.° 提交于 2019-11-26 09:51:36
折腾半天,终于记得去查官方文档 😓 https://documents.westerndigital.com/content/dam/doc-library/en_us/assets/public/western-digital/product/data-center-drives/ultrastar-dc-hc500-series/data-sheet-part-numbers-ultrastar-dc-hc510.pdf 这两个要点截图记一下 来源: https://www.cnblogs.com/kdyi/p/11933261.html