當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python input方法用法及代碼示例


Python 的 input(~) 方法從用戶輸入中讀取一行,將其轉換為字符串並返回。

注意

input(~) 方法將暫停您的程序並等待用戶輸入一些文本。

參數

1.prompt | string | optional

寫入標準輸出的字符串,末尾不帶換行符。

返回值

來自用戶輸入的字符串。

例子

基本用法

詢問用戶的姓名並將其存儲到變量 a 中:

a = input("What is your name?")
# Assume the user input 'Tom'
print("Hello " + a)



Hello Tom

提供多行提示

向用戶提供多行提示:

prompt = "Hello and welcome to SkyTowner!"
prompt += "\nPlease provide us with your first name so that we can customize our messages: "
a = input(prompt)
#Hello and welcome to SkyTowner!
#Please provide us with your first name so that we can customize our messages: 
# Assume the user input 'Tom'
print("Hello " + a)



Hello Tom

相關用法


注:本文由純淨天空篩選整理自Isshin Inada大神的英文原創作品 Python | input method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。