一:流程控制if 语法一: if 条件: code1 code2 code3 ... age = 20 height = 170 weight = 60 sex = 'female' is_beautiful = True if age> 12 and age<25 and weight == 60 and height >168 and sex == 'female' and is_beautiful: print('这就是我的晓晖女神') 语法二 if 条件: code1 code2…
一.流程控制if 语法1: if 条件: code1 code2 code3 .... age=180 height=163 weight=75 sex='female' is_beautiful=True if age > 16 and age < 30 and height > 158 and weight < 100 and sex == 'female' and is_beautiful: print('表白...') print('=====>other c…
python入门学习:6.用户输入和while循环 关键点:输入.while循环 6.1 函数input()工作原理6.2 while循环简介6.3 使用while循环处理字典和列表 6.1 函数input()工作原理 函数input()让程序暂停运行,等待用户输入一些文本.函数input()接受一个参数:即要向用户显示的提示或说明,让用户知道该如何做. 1message = input("Tell me something, and I will repeat it back to you…
2 流程控制工具 记得在语句后加冒号 2.1 while # Fibonacci series: # the sum of two elements defines the next a, b = 0, 1 while a < 10: print(a,end=',') a, b = b, a+b while 循环只要它的条件(这里指: a < 10)保持为真就会一直执行 循环体用 tab 缩进 关键字参数 end 可以用来取消输出后面的换行, 或是用另外一个字符串来结尾 2.2 if x =…