參考資訊: 網站: https://automatetheboringstuff.com/chapter1/ 影片: https://www.youtube.com/watch?v=buMTH6ICnqk


writing Our first program(寫出我們第一個程式):

開起New File


建立程式:

建立完成,Save後,點擊Run/Run Moodule,來啟動程式


執行程式:

黑色字體,是使用者要輸入的資訊. 如圖,ABCD和18

執行完就會自跳出程式


print( ):

輸入在( )內的字串,會顯示在Shell


input( ):


int( ) and str( ):

int( ): 將有字串的數字轉為整數,例如: int('123') = 123,而不是'123',int(12.123) = 12,int(12.123+1) = 13
str( ): 將沒有字串的數字轉為字串,例如: str(123) = '123',而不是123


len( ):

顯示有幾個字串,例如: len('123Abc') = 6