#!/usr/bin/env python3# -*- coding: utf-8 -*-
###條件語句 if elif else###
num = 3
***=trueifnum == 3
and***: # 判斷num的值
print('boss')
elifnum == 2:
print('user')
elifnum == 1:
print ('worker')
elifnum < 0: # 值小於零時輸出
print ('error')
else:
print('roadman') # 條件均不成立時輸出
###條件語句 if elif else###
###迴圈語句###
#在python中,提供while,foreach迴圈,沒有do..while迴圈
#迴圈控制語句:break,continue,pass(pass是空語句,是為了保持程式結構的完整性)
#while 迴圈
count = 0
while(count < 9):
print('the count is:', count)
count = count + 1
print("good bye!")
#foreach 迴圈
str='python'# 第乙個例項
forletterinstr:
print('當前字母 :', letter)
fruits = ['banana','mango'] # 第二個例項
forfruitinfruits:
print ('當前水果 :', fruit)
print("good bye!")
###迴圈語句###
迴圈語句 條件判斷
為頁面新增9個無序列表 var str var div1 document.getelementbyid div1 var i 1 str div1.innerhtml str迴圈前執行多次語句寫在while中,迴圈條件必須寫在while 的最後 故也可以寫成 var str var div1 do...
Python條件語句和迴圈語句
1 python條件語句 python條件語句是通過一條或多條語句的執行結果 true或者false 來決定執行的 塊。python程式語言指定任何非0和非空 null 值為true,0 或者 null為false。基本形式為 if 判斷條件 執行語句 else 執行語句 當判斷條件為多個值時,可以...
python 條件語句和迴圈語句
一 條件分支語法 if 條件 條件為真執行得操作 else 條件為假執行的操作 使用三元操作符 語法 x if 條件 else y eg x,y 4,5 if x y small x else y small x if x y else y elif else if的縮寫 二 for迴圈 for 目...