Python 3.1 快速導覽 - 內建函數 input()

內建函數 (function) input() ,接受使用者的輸入,參數 (parameter) prompt 為提示字串

函數描述
input([prompt])接受使用者的輸入, prompt 為提示字串


舉例示範如下
a = input("-->")
b = input("-->")
c = input("-->")
d = input("-->")
print(a)
print(b)
print(c)
print(d)

# 《程式語言教學誌》的範例程式
# http://pydoing.blogspot.com/
# 檔名:input.py
# 功能:示範 Python 程式 
# 作者:張凱慶
# 時間:西元 2010 年 12 月


執行結果如下



中英文術語對照
函數function
參數parameter


內建函數




沒有留言: