python字符串格式化方法

s='%d*%d=%d'%(1,2,3) 這是一種方法,據說以後主要採用format方法,使用方法如下: 1、按照默認順序,不指定位置   print("{} {}".format("hello","world") )   hello world   2、設置指定位置,可以多次使用   print("{0} {1} {0}".format("hello","or"))   hello or hel
相關文章
相關標籤/搜索