为什么代码显示错误 print('your age is ' + age) TypeError: can only concatenate str (not "int") to str

时间:2021-02-19 13:36:56

标签: python

birth_year = input('birth year: ')
age = 2021 - int(birth_year)
name = input('Name ? ')
print("hi " + name)
print('your age is ' + age)

回溯(最近一次调用最后一次): 文件“C:\Users\Faseeh\PycharmProjects\HelloWorld\app.py”,第 5 行,在 print('你的年龄是' + 年龄) 类型错误:只能将 str(不是“int”)连接到 str

0 个答案:

没有答案