'''
name = input("我叫什么名字:")
age = input("请输入您的年龄:")
print(name+" "+age)
if 条件:
满足条件执行代码
else:
if 条件不满足就走这段
'''
第一种
if True:
print(666)
print(777)
第二种
if 4 > 5:
print("我请你喝酒")
else:
print("喝什么酒")
多选:多种条件
字符窜转化成数字:int(str)条件 字符串必须是数字组成的!
第三种
num = input("请输入您猜的数字: ")
if num == '1':
print("一起抽烟")
elif num == '2':
print("一起喝酒")
elif num == '3':
print("新开一家,走看看")
else:
print("您猜错了")
第四种
name = input('请输入名字: ')
age = input('请输入年龄: ')
if name == '小二':
if age == '18':
print(666)
else:print(333)
else:print('错了。。。')
while
#while将一直的循环
while 条件:
循环体
无限循环
终止循环:改变条件,使其不成立
'''
while False:
print('我们不一样')
print('在人间')
print('痒')
print('222')
'''
第一种输出100的程序
count = 1
flag = True
while flag:
print(count)
count = count + 1
if count > 100:
flag = False
#判断语句的后面要有冒号
#第二种
count = 1
while count<= 100:
print(count)
count = count + 1
total = 1
count = 2
#输出后面加上end=""表示输出不换行
print ("1+2",end="")
while count <= 100:
total=total+count
count=count + 1
if count <= 100:
print ("+"+str(count),end="")
else:
print ("=",end="")
print(total)
#break 终止循环
print('11')
while True:
print('222')
print(333)
break
#break 直接跳出while循环
print(444)
print('qbc')
count = 1
while True:
print(count)
count+=1
if count > 100:
# break
#continue 表示结束本次循环,继续下个循环,下面程序打印出来全是1
print(111)
count = 1
while count < 20:
print (count)
continue
#下面这个代码不在执行
count = count + 1
count = 0
while count <= 100:
count = count + 1
if count > 5 and count <95:
continue
print("loop",count)
print('----out of while loop----')
print('Hello world')
网友评论