iT邦幫忙

2022 iThome 鐵人賽

DAY 4
0
自我挑戰組

Python簡單應用系列 第 4

Day 4 - Python基本迴圈

  • 分享至 

  • xImage
  •  

基本上我們想要重複指令會使用For迴圈在Python的語法是

for (variable) in range(value):
    statement

這是最基本的寫法

那今天如果我們想印出列表字串呢?
例如:

word = ['I', 'am', 'a', 'good', 'student']
for i in range(len(word)):
    print(word[i])

結果會是
https://ithelp.ithome.com.tw/upload/images/20220916/20151938mffbPmqcaO.jpg

那今天我想要讓他倒著輸出呢?
例如:

word = ['I', 'am', 'a', 'good', 'student']
for i in reversed(word):
    print(i)

結果會是
https://ithelp.ithome.com.tw/upload/images/20220916/20151938oIikyzn95i.jpg

看起來是不是非常簡單呢?
趕快動手嘗試看看吧!


上一篇
Day 3 - Python 基本資料型態
下一篇
Day 5 -Python基本迴圈 part2
系列文
Python簡單應用30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言