【Python】第二章2.6-2.10练习题

本文将解答 课本第二章的2.6-2.10练习题

【Python第二章】2.7题

# 格式化输出

开始编译:

name = "XiaoMing"
height = 179.8
weight = 75.0
print(f"Name:{name};Height:{height}cm;Weight:{weight}kg;")
print("Name:{};Height:{}cm;Weight:{}kg;".format(name, height, weight))
运行结果:
Name:XiaoMing;Height:179.8cm;Weight:75.0kg;
Name:XiaoMing;Height:179.8cm;Weight:75.0kg;

Views: 170

默认图片
JiHua

一个专注于前端和NodeJs的网站开发者

文章: 49