#格式化字符串
a = '马冬梅'
b = 18
c = 98.5
print('姓名:%s,年龄:%d,成绩:%.1f' % (a,b,c))
print('姓名:%s,年龄:%d,成绩:%f' % (a,b,c))
#f-string
print(f'姓名:{a},年龄:{b},成绩:{c}')
#使用字符串的format方法
print('姓名:{0},年龄:{1},成绩:{2}'.format(a,b,c))
(仅供参考)
发布于 2024-11-16 10 次阅读
#格式化字符串
a = '马冬梅'
b = 18
c = 98.5
print('姓名:%s,年龄:%d,成绩:%.1f' % (a,b,c))
print('姓名:%s,年龄:%d,成绩:%f' % (a,b,c))
#f-string
print(f'姓名:{a},年龄:{b},成绩:{c}')
#使用字符串的format方法
print('姓名:{0},年龄:{1},成绩:{2}'.format(a,b,c))
(仅供参考)
Comments NOTHING