Sub Main Dim cnt Dim delay Dim time Dim atttime atttime = 20 delay = 3000 time = 50 crt.screen.Send "root" & chr(13) crt.Sleep delay crt.screen.Send " ...
分类:
其他好文 时间:
2018-10-06 14:25:30
阅读次数:
197
Understanding the CMS Collector Understanding the CMS Collector CMS has three basic operations: CMS collects the young generation (stopping all applic ...
分类:
其他好文 时间:
2018-09-23 11:33:18
阅读次数:
133
进入不同语言版本的Python交互环境 py -2 py -3 pip 命令的执行 : py -2 -m pip install xxxx py -3 -m pip install xxxx pip3 install nose 这个也可以 执行python文件 py -2 a.py py -3 a. ...
分类:
编程语言 时间:
2018-08-24 13:17:46
阅读次数:
318
xu言: ... Words eye 读音同 I 眼睛 nose 鼻子 ear 耳朵 tooth 牙齿 mouth 嘴 hair 头发 eyebrow 眉毛 cheek 脸颊 neck 脖子 shoulder 肩膀 arm 手臂 finger 手指 palm 手掌 stomach 肚子 elbow ...
分类:
其他好文 时间:
2018-08-07 01:39:48
阅读次数:
199
[TOC] "Convolutional Neural Network" Use Python to impliment a simple network for hanndwritten numeral classification. At some point in your daily lif ...
分类:
Web程序 时间:
2018-07-25 21:12:14
阅读次数:
207
分析源码的过程中我们发现,Akka出现了Actor、ActorRef、ActorCell、ActorContext等几个相似的概念,它们之间究竟有什么区别和联系呢? Actor这个特质是直接面向开发者的,这里我就直接贴出了官方源码。从代码来看,trait Actor提供了对消息的处理,actor生命 ...
分类:
其他好文 时间:
2018-07-25 15:13:59
阅读次数:
315
又来写nose了,这次主要介绍nose中的用例跳过应用,之前也有介绍,见python nose测试框架全面介绍四,但介绍的不详细。下面详细解析下 nose自带的SkipTest 先看看nose自带的SkipTest典型应用 应用一: 但这种SkipTest在实际的日志中没有显示Skip关键字 应用二 ...
分类:
编程语言 时间:
2018-06-19 21:32:11
阅读次数:
684
#!/usr/bin/python3# -*- coding: utf-8 -*-# @Time : 2018/6/13 8:40# @File : peiqi1.pyfrom turtle import *def nose(x, y): # 鼻子 penup() # 提起笔 goto(x, y) ...
分类:
其他好文 时间:
2018-06-13 12:08:30
阅读次数:
305
class Person: #类名首字母大写 #经典类 def __init__(self): #构造函数 self.nose=1 #鼻子 #属性 self.face= 1 #脸 self.head= 1 #脑子 self.wing = 4 #翅膀 def driver(self): print(' ...
分类:
其他好文 时间:
2018-05-25 21:10:23
阅读次数:
182
原文地址: http://www.cnblogs.com/fnng/p/6580636.html 相对而言,Python下面单元测试框架要弱上少,尤其是Python自带的unittest测试框架,不支持参数化,不支持多线程执行用例,不支持HTML测试报告的生成...。好再,部分不足我们可以通过uni ...
分类:
编程语言 时间:
2018-04-03 19:12:29
阅读次数:
237