Ospf第二天配置IP地址PC1:IP地址192.168.1.1子网掩码255.255.255.0网关192.168.1.254PC2:IP地址192.168.2.1子网掩码255.255.255.0网关192.168.2.254PC3:IP地址200.1.1.1子网掩码255.255.255.0网关200.1.1.254R1:interfaceGigabitEthernet0/0/1ipaddr
分类:
其他好文 时间:
2018-10-25 19:35:13
阅读次数:
126
学习大纲 创建Input的三种方法和它们之间的不同 如何使用Screen Scraping Wizard 创建Output的三种方法和它们之间的不同 如何使用Data Scraping Wizard Input (输入):使应用程序做某件事。如鼠标单击、文本录入、键盘快捷键、鼠标右击、鼠标悬停等。 ...
分类:
其他好文 时间:
2018-10-25 18:03:26
阅读次数:
194
这个课程的参考视频在youtube。 主要学到的知识点有: It is different from python, that "1" only present string "1", and '1' only presents char '1'. (type) can chang the type ...
分类:
编程语言 时间:
2018-10-25 11:14:53
阅读次数:
179
In this lesson, we’ll get the most fundamental understanding of what an automated test is in JavaScript. A test is code that throws an error when the ...
分类:
编程语言 时间:
2018-10-25 11:05:10
阅读次数:
130
Lesson 021 —— python 循环语句 Python中的循环语句有 for 和 while。 循环可以使用 语句跳出当前循环。 Python循环语句的控制结构图如下所示: while 循环 Python中while语句的一般形式: 同样需要注意冒号和缩进。另外,在Python中没有do. ...
分类:
编程语言 时间:
2018-10-22 23:19:01
阅读次数:
264
Lesson 020 —— python 条件控制 Python条件语句是通过一条或多条语句的执行结果(True或者False)来决定执行的代码块。 可以通过下图来简单了解条件语句的执行过程: if 语句 Python中if语句的一般形式如下所示: 如果 "condition_1" 为 True 将 ...
分类:
编程语言 时间:
2018-10-22 23:16:31
阅读次数:
173
Lesson 018 —— python 集合 集合(set)是一个无序的不重复元素序列。 可以使用大括号 或者 函数创建集合,注意:创建一个空集合必须用 而不是 ,因为 是用来创建一个空字典。 类似列表推导式,同样集合支持集合推导式(Set comprehension): 添加元素 语法格式如下: ...
分类:
编程语言 时间:
2018-10-22 16:46:54
阅读次数:
208
Lesson 016 —— python 元组 Python 的元组与列表类似,不同之处在于元组的元素不能修改。 元组使用小括号,列表使用方括号。 元组创建很简单,只需要在括号中添加元素,并使用逗号隔开即可。 元组中只包含一个元素时,需要在元素后面添加逗号,否则括号会被当作运算符使用。 元组与字符串 ...
分类:
编程语言 时间:
2018-10-21 16:57:00
阅读次数:
151
In this lesson, you will learn how to extend styles from one styled-component to another in a React app. This is helpful when you have two styled-comp ...
分类:
其他好文 时间:
2018-10-21 10:19:03
阅读次数:
111