常用的压缩格式: .zip格式压缩:linux和windows中的zip格式可以通用 压缩文件夹: 解压缩: 删除源文件: 之后进行解压缩: gz格式: 压缩之后自动变成.g...
locate命令搜索: locate不能搜索出新建的文件,是在数据库中进行搜索 如果需要搜索新文件,需要先updatedb,如果没有权限,则使用sudo updatedb l...
ls命令: 文件权限: 所有者/所属组/其他人 建立目录: 创建一个目录:mkdir files 创建多个目录:mkdir -p japan/files 切换所在目录:cd ...
创建软链接以及软硬链接之间的对比: 创建软链接需要写绝对路径: 由于给sb文件创建软链接的时候没有写绝对路径,会有如下报错, 如果不写绝对路径,会在当前目录下(/tmp)寻找...
正则表达式使用步骤 1. 用import re导入正则表达式 2. 用re.compile()函数创建一个Regex对象 3. 向Regex对象的search()方法传入想查...
users = ['Eric', 'Danny','admin','Micky','Albert'] for user in users: if(user == 'adm...
1. 检查特殊元素 在for语句中嵌套if语句: request_toppings = ['mushrooms','green peppers','extra cheese'...
alien_color = 'red' if alien_color == 'green': print('you got five points!') else: ...
age = 14 if age>=18: print('enough to vote') #判断语句 print('have you registered?') el...
1. if语句 cars = ['audi','bmw','subaru','toyota'] for car in cars: if car == 'bmw': #在p...
1. for循环 for magician in magicians: #这里注意for循环后面有一个冒号 print(magician) #以及print这一行前面必须...
for value in range(1,21): print(value) list_value = list(range(1,1000000)) print(sum(li...
travel = ['Britain','Germany','America','Swiss','Japan'] print(travel) print(sorted(tra...
1. 访问列表元素 索引从0开始而不是1 bicycles = ['trek','cannondale','redline','specialized'] print(bic...
name_list = ['a','b','c'] print(name_list) print(name_list[1] + ' cannot attend this me...
http://dabblet.com/gist/525eb8e9cdade71723c1 可以利用box-shadow创建多层边框, box-shadow:0 0 0 15p...
background-clip属性:border-box/padding-box/content-box; 从最外层到最内层,分别为border, padding和conte...