高仿模拟练习,补全代码空缺,答案点击按钮展开
接收用户输入的姓名,输出"你好,XXX!"(不含引号)。
name = input() print("你好," + ____ + "!")
name
input() 返回字符串,用 + 拼接到问候语中。输入 Tom 输出"你好,Tom!"。