标签:inpu repeat 附加 put pre 原理 ESS += first
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 + ‘!‘)
标签:inpu repeat 附加 put pre 原理 ESS += first
原文地址:https://www.cnblogs.com/rener0424/p/10086650.html