很多时候pthon的语法是沿袭c,因为刚学过c,所以感觉学python相关语法的时候还是比较得心应手。
# if/elif/else [判断条件块] :
# 子语句块
#例子:
if i==4 :
print(“hello if”)
elif i<4 :
print(“hello elif”)
else :
print(“hello else”) #看吧有没有很像C语言呢,但是代码简洁很多呢
1.2.1 语法:
#while
name=''
while not name.strip():
name=input('please input your name:')
print("hello %s"%name)
list=['we','are','good','friend']
for i in range(len(list))
import zipfile #zipfile 模块是对zip文件进行操作的一个模块,里面包含了很多操作对象及其方法
zfile=zipfile.Zipfile('evil.zip')
passFile=open('dictionary.txt')
for line in passFile.readlines()
password=line.strip()
try:
zFile.extractall(pwd=password)
print('[*]Password ='+password+'\n')
except Exception,e:
pass
'''python中的try except语句常用在错误处理上,本例中的错误引用是对所有错误的一个总处理方式'''