功能 接受一个标准输入数据返回为string类型 在命令行输入一行信息,将此信息返回成字符串 用法 res = input('请输入年龄:') print('您的年龄是' + res) 执行结果 请输入年龄:123 您的年龄是123 喜欢