摘要: 0. Python中引入itertools 1. 笛卡尔积: product(iter1, iter2,...,iterN,[repeat=i]) 结果 1 ('1', '1', '1') 2 ('1', '1', '0') 3 ('1', '0', '1') 4 ('1', '0', '0') 5 阅读全文
posted @ 2016-12-14 01:01 welcome_home 阅读(326) 评论(0) 推荐(0) 编辑
摘要: 1. ipad pro 与 ipad air2 时间已经是2016.12.9, 苹果还没有推出新的ipad产品,有些纠结于哪款更适合自己,总结下产品不易获取的核心配置信息 ipad air2 ram 2G 9.7寸 冷色调显示 A8 M8 ipad pro ram 2G 9.7寸 自动调色 A9 M 阅读全文
posted @ 2016-12-09 16:04 welcome_home 阅读(197) 评论(0) 推荐(0) 编辑
摘要: 1. xor 亦或运算: 相同为0,否则为1,表示为⊕; a⊕b=b⊕a 特殊之处: a⊕b=c,则 c=a⊕b, b=a⊕c 1⊕0=1; 2⊕0=2(即:亦或的结果可以等于自身) 阅读全文
posted @ 2016-12-09 02:48 welcome_home 阅读(103) 评论(0) 推荐(0) 编辑
摘要: 1. 最大公约数:(辗转相除法) 注意:gcd(3,6)=gcd(6,3) 下面的除数可以为0 Specifically, gcd(x, 0) = gcd(0, x) = x. 详细解释 def gcd(a, b): if b == 0:return a return gcd(b, a % b) # 阅读全文
posted @ 2016-12-03 21:32 welcome_home 阅读(278) 评论(0) 推荐(0) 编辑
摘要: 1. 输入、输出、格式化输出 1) 读入数据:input >>number: num=input('Give me your number: '); >>string: str=input('Please enter a string: ', 's'); 2) 输出函数:disp >>输出单个值nu 阅读全文
posted @ 2016-10-24 20:10 welcome_home 阅读(1074) 评论(0) 推荐(0) 编辑
摘要: 1. 矩阵表示 >>行元素分隔: 空格'space'或逗号',' >>列分隔: 分号或回车换行符 2. 冒号表达式 1) start:end 2) start: step : end >> x=1:5 x = 1 2 3 4 5 >> y=1:2:9 %步长为2 y = 1 3 5 7 9 3. 线 阅读全文
posted @ 2016-10-24 17:42 welcome_home 阅读(450) 评论(0) 推荐(0) 编辑
摘要: 1. 续行符 ... 当物理的一行之内写不下时, 在 物理行的结尾加上三个小黑点 >>跟在运算符之后,可以不留space空格 >>跟在数字之后,若不留白space,出错; 留一个space,则ok 总结: 续行符之前留space,可以应对所有情况!!! 2. 自动补全(Command History 阅读全文
posted @ 2016-10-24 00:14 welcome_home 阅读(246) 评论(0) 推荐(0) 编辑
摘要: 1. 两个命令: clear: 清除内存中变量的值(在workspace中可以看到) clc: 清除Command Window中的输出 2. 脚本编辑器: matlab脚本扩展名为*.m 在Command Window 中创建、打开、编辑脚本文件(打开Pro目录下P01.m脚本) 3. 保存wor 阅读全文
posted @ 2016-10-23 15:34 welcome_home 阅读(392) 评论(0) 推荐(0) 编辑
摘要: 问题描述: 有N条绳子, 它们的长度分别为Li. 如果从它们中切割出K条相同的绳子的话,这K条绳子每条最长能有多少? (备注:答案保留两位小数) <1>精确到小数点后两位输出 <2>运行结果 总结 设置小数点后精确到n位,需要引入头文件/setf(ios::fixed)/setprecision(n 阅读全文
posted @ 2016-09-21 23:01 welcome_home 阅读(239) 评论(0) 推荐(0) 编辑