标签: python
n = input ("Name :") i = input ("Age :") aa = input ("How many years do you wish ( 0 to 99) :") print("Mr." + n + " in the year 20" + aa + "will have" + i + aa)
继承我的代码,我想添加i + aa以便它告诉我最终的年龄,但它只是将它们添加为2个字符串,谢谢!