name='cecilia'
age=1
print('我叫{},今年{}岁'.format(name,age))
print(f'我叫{name},今年{age}岁')
print('我叫'+name+',今年'+str(age)+'岁')