1. 程式人生 > >使用者輸入和while迴圈

使用者輸入和while迴圈

函式input()的工作原理

message=input('Tell me something,and I will repeat it back to you:')
print(message)

編寫清晰的程式

#有時,提示可能超過一行,可將提示儲存在一個變數中,再將該變數傳遞給函式input()。
prompt='If you tell us who you are,we can personalize the message you see.'
prompt+='\nWhat is your first name?'
#第一行將訊息的前半部分儲存進變數
#第二行運算子‘’+=‘在儲存在變數中的字串末尾附加一個字串
name=input(prompt)
print('\nHello, ' + name + '!')