iT邦幫忙

2022 iThome 鐵人賽

DAY 7
0
自我挑戰組

Python簡單應用系列 第 7

Day 7 - Python條件判斷、建立函數

  • 分享至 

  • xImage
  •  

寫過C語言的大家會知道,在C語言中的else if語法在python中是elif,那我們知道if後面接的通常是條件
例如

  1. if
if score < 60:
    printf('Fail')
  1. if else
if score < 60:
    print('Fail')  #符合所設條件該做的事
else:
    print('Pass')  #不符合條件時
  1. if elif else
if score >= 80:
    print('GPA is 4')  #符合所設條件該做的事
elif 80 > score >= 70:
    print('GPA is 3')  #不符合第一個條件時
else:
    print('GPA is 2')  #不符合以上的條件時

如何自訂函數呢?

def 函數名稱(input、parameter)
    return output
    
def sum(x,y)
    return x+y

當我x = 5,y = 1,結果會幫我回傳6
https://ithelp.ithome.com.tw/upload/images/20220919/20151938iAVrksjF12.jpg

到這邊為止都還滿簡單的,歡迎大家去試試


上一篇
Day 6 - Python基本迴圈part3
下一篇
Day 8 - Python字串常用方法
系列文
Python簡單應用30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言