10 best Linux distros for privacy fiends and security buffs in 2017 Introduction The awesome operating system Linux is free and open source. As such, there are thousands of different ‘flavours’ available – and some types of Linux such as Ubuntu are g
列表推导式 [表达式 for 变量 in range(n) if 条件] 等效于 for 变量 in in range(n): if 条件: 表达式 优点:书写方便,缺点:不易读 注意:用的是方括号,如果是小括号则不是列表推导式,而是生成器(不做要求) Lambda匿名函数 lambda 变量:表达式 表达式是函数的处理逻辑,冒号前面的返回值 例如实现5的阶乘 1*2*3*4*5=120 优点:书写方便,缺点:不易读,只能写简单功能,只能使用一次 os模块 os是操作系统模块 1.getcw