`def great():
name = input('输入名称:')
伟大='你好' +名称
回归伟大
大()`
输出无效回报
输入名称:dsfsf
出了什么问题?
在VS代码中工作,python 3.6.4 for python all extension install。 在IDLE中一切正常
答案 0 :(得分:0)
您需要使用打印功能调用函数或为函数
指定变量def great():
name = input('enter name: ')
great = 'hello ' + name
return great
print(great())
# assigning a variable to the function call
function_output = great() # this assigns the "hello name" string `to the function_output variable`
print(function_output)