迴圈語句
subject=
['math'
,'chinese'
,'art'
,'music'
]for i in subject:
print
('我目前正在學習:{}'
.format
(i))
week=
0while week>
7: print
('當前正是第{}周'
.format
(week)
) week+=
1print
('我在這裡已經待了{}周了,可以走了'
.format
(week)
)
條件語句is_study=
1if is_study ==1:
print
('可以找到好工作'
)
is_study=
1if is_study ==1:
print
('可以找到好工作'
)else
:print
('再努力一下好了'
)
if score <60:
print
('小於60分'
)elif score <70:
print
('60分到70分'
)elif score <80:
print
('70分到80分'
)else
:print
('80-100分'
)
python03迴圈的大膽試錯
學魔法的時候,最怕的是什麼?就是怕出錯,其實很多時候,因為害怕,讓我遠離了很多有意思的事情,比如綁緊跳,我有恐高啊,那個是真的怕啊。還有很多想學python這個魔法的朋友,是不是會和我一樣,怕出錯呢?因為怕出問題的恐懼,因為不懂,而怕出醜態的恐懼,所以看到數學就頭痛,但是,為什麼會這樣?我什麼時候因...
Python 03 流程控制語句
1 if語法 if 條件 表示式其他語句2 if else語法 if 條件 表示式else 表示式其他語句3 if elif else語法 if 條件 表示式elif 條件 表示式else 表示式其他語句迴圈或遍歷乙個可迭代物件,主要遍歷序列 字串 列表 元組 字典和集合 1 for迴圈語法 for...
python03資料操作
list1 google runoob 1997,2000 list2 1,2,3,4,5,6,7 print list1 0 list1 0 print list2 1 5 list2 1 5 執行值list1 0 google list2 1 5 2,3,4,5 1.增加元素 在列表末尾新增新的...