python之格式化输出
2021-05-04 01:29
标签:顺序 comment 开发 world round color ide 内容 场景 1、格式化输出的定义 其一般是指在print()语句中把一段字符串里面的某些内容替换掉之后再输出。 2、格式化输出的种类及对应实例 ①使用%s %d等 优点:贯穿于几乎所有的高级计算机语言 缺点:在真实开发场景中不易方便使用 实例:print("my name is %s my age is %d"%(‘Rainson‘,18)) //此处需要意义对应,需要记忆故不适用 ②使用str.format()函数 优点:不设置指定位置,按默认顺序 缺点:暂无 实例:"{} {}".format("hello", "world") "{0} {1}".format("hello", "world") "{1} {0} {1}".format("hello", "world") python之格式化输出 标签:顺序 comment 开发 world round color ide 内容 场景 原文地址:https://www.cnblogs.com/Rainson/p/13196328.html