1:Python
面向对象编程 封装,继承,多态
数据类型 str int float bool
数据列表 list - [] tuple-() dict-{} set()
选择语句if condition: else: if condition: elif: 循环语句 for item in list: while condition:
函数方法 def name:
类 class name(object):
包, 模块
2:Linux
开源系统
core bash_shell
ubuntu centeros redhat
常用命令 命令 选项 参数
目录文件 mkdir -p ls -lh rm -rf cd touch cat copro mv
解压缩 zip gzip bzip2 tar
查询 locate find
帮助 man --help
快捷键 ctrl +l +a +e +u +k
开关机 shutdown reboot
shell编程 #!/bin/bash
多命令行执行 ; && || |
通配符 ? * []