标签: python python-3.x
不同类型的输入使我感到困惑。 Str,char,int等
这是我的挑战
键入两个语句。第一个将用户输入读入person_name。第二个将用户输入读入person_age。如果用户输入为以下内容,则是给定程序的示例输出:Amy 4
5年后,艾米将9岁
person_name = ' ' person_age = 0 print('In 5 years', person_name, 'will be', person_age + 5)
任何帮助将不胜感激