(原教材及範例程式碼網址) print print() 函數讓你可以將輸出傳送到終端機。字串可以被單引號 (') 或雙引號 (") 所包含,但請在程式碼內使用一致的風格 "this is a string" "這是一個字串" 'this is also a string' '這也是一個字串' input() 函數可以讓使用者輸入一個字串 參數 (parameters): prompt: 給使用者看的訊息 回傳值 (return value): 使用者輸入的值 (類型為字串)