age = 19
if age>=18:
print('今年{}岁'.format(age))
year = '今年 {} 岁'
if age >= 18:
print(year.format(age))
没问题啊,我这运行通过啊