四、if
if语句的完整形式就是:
if<条件判断1>:
<执行1>
elif<条件判断2>:
<执行2>
elif<条件判断3>:
<执行3>
else:
<执行4>
注意:不要少写冒号,
例如:
age =20
if age >=6:
print('teenager')
elifage >=18:
print('adult')
else:
print('kid')
五、循环
1.for...in循环
names = ['Michael','Bob','Tracy']
for name in names:
print(name)
以上代码会将3个名字依次打印。
所以for x in ...循环就是把每个元素代入变量x,然后执行缩进块的语句。
2. while循环
list=['a','cc','das','eqwe','132','345','345','dasd']
n=len(list)
while n>0:
print(list[n-1])
n = n-1