码迷,mamicode.com
首页 >  
搜索关键字:lesson    ( 930个结果
Lesson 022 —— python 函数
Lesson 022 —— python 函数 函数是组织好的,可重复使用的,用来实现单一,或相关联功能的代码段。 函数能提高应用的模块性,和代码的重复利用率。Python提供了许多内建函数,比如print()。也可以自己创建函数,这被叫做用户自定义函数。 定义一个函数 可以定义一个由自己想要功能的 ...
分类:编程语言   时间:2018-11-02 21:42:43    阅读次数:128
Matrix-chain Multiplication
Source https://onlinejudge.u-aizu.ac.jp/courses/lesson/1/ALDS1/all/ALDS1_10_B Description Time Limit : 1 sec , Memory Limit : 131072 KB Time Limit : 1 ...
分类:其他好文   时间:2018-11-02 01:58:42    阅读次数:144
Level 1-Lesson 5. Advanced UI Interaction
学习大纲 创建Input的三种方法和它们之间的不同 如何使用Screen Scraping Wizard 创建Output的三种方法和它们之间的不同 如何使用Data Scraping Wizard Input (输入):使应用程序做某件事。如鼠标单击、文本录入、键盘快捷键、鼠标右击、鼠标悬停等。 ...
分类:其他好文   时间:2018-10-25 18:03:26    阅读次数:194
[Java in NetBeans] Lesson 03. More Variables / Type Casting
这个课程的参考视频在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
[Unit Testing] Fundamentals of Testing in Javascript
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 循环语句
Lesson 021 —— python 循环语句 Python中的循环语句有 for 和 while。 循环可以使用 语句跳出当前循环。 Python循环语句的控制结构图如下所示: while 循环 Python中while语句的一般形式: 同样需要注意冒号和缩进。另外,在Python中没有do. ...
分类:编程语言   时间:2018-10-22 23:19:01    阅读次数:264
Lesson 020 —— python 条件控制
Lesson 020 —— python 条件控制 Python条件语句是通过一条或多条语句的执行结果(True或者False)来决定执行的代码块。 可以通过下图来简单了解条件语句的执行过程: if 语句 Python中if语句的一般形式如下所示: 如果 "condition_1" 为 True 将 ...
分类:编程语言   时间:2018-10-22 23:16:31    阅读次数:173
Lesson 018 —— python 集合
Lesson 018 —— python 集合 集合(set)是一个无序的不重复元素序列。 可以使用大括号 或者 函数创建集合,注意:创建一个空集合必须用 而不是 ,因为 是用来创建一个空字典。 类似列表推导式,同样集合支持集合推导式(Set comprehension): 添加元素 语法格式如下: ...
分类:编程语言   时间:2018-10-22 16:46:54    阅读次数:208
Lesson 016 —— python 元组
Lesson 016 —— python 元组 Python 的元组与列表类似,不同之处在于元组的元素不能修改。 元组使用小括号,列表使用方括号。 元组创建很简单,只需要在括号中添加元素,并使用逗号隔开即可。 元组中只包含一个元素时,需要在元素后面添加逗号,否则括号会被当作运算符使用。 元组与字符串 ...
分类:编程语言   时间:2018-10-21 16:57:00    阅读次数:151
[React] Extend styles with styled-components in React
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
930条   上一页 1 ... 20 21 22 23 24 ... 93 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!