Python不会告诉我的名字。我怎么能告诉我的名字?

时间:2015-06-25 08:38:42

标签: python

Name = input ("Hey, what's your name ?")
print ("So, your name is") + Name

结果是:

Hey, what's your name ?Robert
So, your name is
Traceback (most recent call last):
  File "C:/Users/Angel'94/Desktop/Sal.py", line 2, in <module>
    print ("So, your name is") + Name
TypeError: unsupported operand type(s) for +: 'NoneType' and 'str'

当我在问号后输入我的名字时,我还想要一个空格。

1 个答案:

答案 0 :(得分:16)

您需要首先构建字符串,然后将结果传递给print()

print("So, your name is " + Name)

您所做的是首次打印"So, your name is"print()函数在完成后始终返回None。然后,您尝试将Name添加到None返回值。

您可以将Name作为额外参数传递给print()函数,而不是使用连接:

print("So, your name is", Name)

并且该函数将为您插入两个参数之间的空格。

要在提示符上获取空格,只需将其添加到input()参数:

Name = input("Hey, what's your name? ")
#                  extra space here ^