2019年1月20日 星期日

[Python學習筆記] python 輸入函數 input() 使用方法及範例

在程式設計中,時常會要求使用者輸入資料,在 python 使用 input 函數可以達到這功能,語法如下:

                          變數 = input("提示字串")

說明:回傳的變數值為字串資料型態

範例:
  1. # -*- coding: utf-8 -*-
  2. """
  3. Created on Sun Jan 20 22:37:14 2019
  4. @author: 軟體罐頭
  5. """
  6. score input("請輸入程式設計成績:")
  7. print("這次程式設計成績:"score ,"分")
  8. print("score的資料型態為:"type(score))

執行結果: