如何在print语句中显示Python输入

时间:2017-11-15 04:40:20

标签: python-3.x

name = input('What is You name ')

这只显示了输入,我需要显示'你好'以及!!

print ('Hello', input(name)) 

当我尝试输入时: -

name = input('What is You name ')
print ('Hello')
input(name)

为什么它直接显示名称而不是hello关键字。任何人都可以请更新相同的并分享一个可能有用的男女同校。

1 个答案:

答案 0 :(得分:0)

这甚至是exact example in the docs

person = input('Enter your name: ')
print('Hello', person)