print('{2}*{1}={0}'.format(3*5,5,3))
输出:
3*5=15
print('我是{name},今年{age}岁'.format(name='李华',age=18))
我是李华,今年18岁