赞
踩
name = “张三” age = 18
print(‘我的名字叫%s,我今年%d岁了’ % (name, age)) 输出:我的名字叫张三,我今年18岁了
print(f’我的名字叫{name},我今年{age}岁了’) 输出:我的名字叫张三,我今年18岁了