1. 三元运算 + 2. for循环 for为有限循环,while为无限循环 可迭代对象:是字符串,数字不可以 数字不可以迭代但是可以用range函数 for i in range(100) for I in range (0,100): for I in range(0,100,1) 上述三种写法相同,默认不写开始,从0开始,步长默认为1 也支持负数取值 一般数字默认是从0开始可以吧range后参数设为(1,10)就从1开始 若range(2,11,2)第二个二是在第一个开始数…
1.Introduction 1.1 Example - Database mining Large datasets from growth of automation/web. E.g., Web click data, medical records, biology, engineering - Applications can't program by hand. E.g., Atonomous helicopter…