未知题型

请编写Python程序,提示用户输入姓名,然后打印“欢迎你xxx”,请将程序及运行结果截图,以图片格式提交

【参考答案】

name = input("请输入姓名") print("欢迎你,%s"%(name))