python的print如何实现自定义输出格式

avatar
作者
筋斗云
阅读量:0

在Python中,可以使用format()函数或者f-string(Python 3.6及更高版本)来实现自定义输出格式。

  1. 使用format()函数:
name = "张三" age = 25 score = 98.5  # 设置输出格式 formatted_output = "姓名:{},年龄:{},成绩:{:.1f}".format(name, age, score)  # 打印输出 print(formatted_output) 
  1. 使用f-string:
name = "张三" age = 25 score = 98.5  # 设置输出格式 formatted_output = f"姓名:{name},年龄:{age},成绩:{score:.1f}"  # 打印输出 print(formatted_output) 

在这两个示例中,我们都设置了自定义的输出格式,包括姓名、年龄和成绩。在format()函数中,我们使用大括号{}作为占位符,并在大括号内指定格式化选项(如保留一位小数)。在f-string中,我们直接在字符串中使用大括号{}包裹变量,并在大括号内指定格式化选项。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!