(1)
IF 条件:
执行内容一
else:
执行内容二
(2)
if 条件:
代码块一
elif条件:
代码块二
else:
代码块三
(3)
循环;
while 条件:
代码块
break
continue
break:用于跳出所有循环,break后面的代码不在执行
continue:用于跳出本次循环,继续下次循环
(4)代码案例:
#!/usr/bin/env python #-*-coding:utf-8-*- #一个等号是赋值,两个等号是比较 if 1!=1: print ("1111") else: print("2222") #上面代码最后输出的是2222,因为1 !=1 为False,所以执行else语句 #案例二 name = raw_input("username:") pwd = raw_input("password:") if name = "alex" and pwd ="123": #pwd 因为没有设置数据类型所以要假引号 print("yes") else: print("no") #案例三 import time n1 = True while n1: print("1") time.sleep(1) n1=False print("end") #time 的作用是延迟几秒输出,此时会输出 1,如果没有n1=False 则持续不断输出1
时间: 2024-10-07 10:36:33