阅读量:0
在Python中,可以使用format()
函数或者f-string(Python 3.6及更高版本)来实现自定义输出格式。
- 使用
format()
函数:
name = "张三" age = 25 score = 98.5 # 设置输出格式 formatted_output = "姓名:{},年龄:{},成绩:{:.1f}".format(name, age, score) # 打印输出 print(formatted_output)
- 使用f-string:
name = "张三" age = 25 score = 98.5 # 设置输出格式 formatted_output = f"姓名:{name},年龄:{age},成绩:{score:.1f}" # 打印输出 print(formatted_output)
在这两个示例中,我们都设置了自定义的输出格式,包括姓名、年龄和成绩。在format()
函数中,我们使用大括号{}
作为占位符,并在大括号内指定格式化选项(如保留一位小数)。在f-string中,我们直接在字符串中使用大括号{}
包裹变量,并在大括号内指定格式化选项。