Python中print用法大全(打印字符串,整形和浮點型)

一、打印字符串spa string="hello"     #%s打印時結果是hello     print "string=%s" % string      # output: string=hello     #%2s意思是字符串長度爲2,當原字符串的長度超過2時,按原長度打印,因此%2s的打印結果仍是hello     print "string=%2s" % string     # o
相關文章
相關標籤/搜索