字符串格式化确实有两种形式,某些库推荐使用%,譬如logging库,当你用format形式的时候,pylint检查会给warning。不过个人还是蛮喜欢format的。
Activity
taizilongxu commentedon Sep 22, 2015
format更优雅 哈哈
OctavianLee commentedon Sep 22, 2015
@taizilongxu 是的。这个issue只是说那个题目,不全面。很多库里,是推荐使用%的。
taizilongxu commentedon Sep 22, 2015
恩, 看了下logging是01年的老库, format是2.6版本新特性(08年), 看来很有可能是为了兼容的问题
哎 其实自己写的时候还是用%比较多...
OctavianLee commentedon Sep 22, 2015
嗯,所以 对那边的文字需要更正一下 说明 不过项目很赞,star了
taizilongxu commentedon Sep 22, 2015
: )
fix #4
truebit commentedon Sep 18, 2018
3.6的f-string更优雅,可以加到考题中