分支:是否做某事
迴圈:持續做某事
python可以有效避免c中的懸掛else
if x < y:
small = x
else:
small = y
assert 4 > 3, "錯了,4<3"
為斷言失敗新增備註或說明
```#python
assert 3 > 4, "錯了,4>3"
while 條件:
迴圈體for 目標 in 表示式:
迴圈體
#迴圈乙個字串
#迴圈乙個列表
autos = ['江鈴', '陸風', '哈弗', '中興']
for i in autos:
print(autos.index(i), i, len(i))
#迴圈乙個數字範圍
語法:range( start, stop, step=1)
range有3個引數,其中start和step是可選的。step預設為1
range生成乙個從start開始,不包含stop,步長為step的序列
小甲魚Python課後作業008了不起的分支和迴圈
0.if not money 100 上邊這行 相當於?if money 100 1.assert的作用是什麼?assert 斷言是宣告其布林值必須為真的判定,如果發生異常就說明表達示為假,用法是assert 表示式 用於測試程式,防止錯誤 繼續執行,如果表示式的值為假,則整個程式退出,並輸出一條錯...
007 008 了不起的分支迴圈
in 是成員資格符 a in asdwrr true標題出處 魚c論壇 score int input 請輸入你的成績 while score 100 elif score 80 and score 60 print c elif score 90 and score 100 print a eli...
小甲魚8 2了不起的條件分之2課後題總結
2.假設有 x 1,y 2,z 3,請問如何快速將三個變數的值互相交換?答 x,y,z z,y,x 3.猜猜 x y and x or y 0 實現什麼樣的功能?答 這其實是 python 的作者還沒有為 python 加入三元操作符之前,python 社群的小夥伴們靈活的使用 and 和 or 搭...