流程控制(if while for)

2022-09-15 17:39:14 字數 1478 閱讀 7288

# 1、語法一

if 條件:

#條件成立時執行的子**塊`

**1**2

**3# 示例:

***='female'

age=18

is_beautiful=true

if *** == 'female' and age > 16 and age < 20 and is_beautiful:

print('開始表白。。。')

print('other code1...')

print('other code2...')

print('other code3...')

​# 2、語法二

if 條件:

# 條件成立時執行的子**塊

**1**2

**3else:

# 條件不成立時執行的子**塊

**1**2

**3# 示例:

***='female'

age=38

is_beautiful=true

if *** == 'female' and age > 16 and age < 20 and is_beautiful:

print('開始表白。。。')

else:

print('阿姨好。。。')

print('other code1...')

print('other code2...')

print('other code3...')

​# 3、語法三:

if 條件1:

if 條件2:

**1**2

**3# 示例:

***='female'

age=18

is_beautiful=true

is_successful=true

height=1.70

if *** == 'female' and age > 16 and age < 20 and is_beautiful \

and height > 1.60 and height < 1.80:

print('開始表白。。。')

if is_successful:

print('在一起。。。')

else:

print('什麼愛情不愛情的,愛nmlgb的愛情,愛nmlg啊.')

else:

print('阿姨好。。。')

print('other code1...')

print('other code2...')

print('other code3...')

​# 4、語法四:

if 條件1:

**1**2

**3elif 條件2:

**1**2

**3elif 條件3:

**1**2

**3.......

else:

**1**2

**3

流程控制之if,while,for

流程控制之if,while,for age of girl 18 if age of girl 25 print 小姐姐 age of girl 18 if age of girl 30 print 阿姨好 else print 小姐姐 yafeng 超級管理員 egon 普通管理員 sean 業務...

day 05 流程控制(if while for)

if 條件 語句if 條件 語句else 語句if 條件 語句elif 條件 語句elif 條件 語句.else 條件 也可以不加else 語句break 終止迴圈 continue 不執行後面的 直接進行下一次迴圈 當while迴圈沒有被break掉的時候,會執行中的else while 條件 語...

mysql流程控制 MySQL 流程控制

流程控制 1 順序結構 程式從上往下依次執行 2 分支結構 多條路徑選擇一條 3 迴圈結構 在規定範圍內重複執行 一 分支結構 1 if函式 功能 實現分支流 語法 if 表示式1,表示式2,表示式3 執行順序 執行表示式1,成立返回表示式2的值,不成立則返回表示式3的值 應用 任何地方 例 if ...