Python TypeError: not enough arguments for format string

最近在學Python,語句:python

'user %s,id:%s'  %  self.__name, self.__id

報了個錯誤google

Python TypeError: not enough arguments for format string

一看就傻眼了,參數不夠?明明是給夠兩個了啊spa

後來google發現,後面給的參數要是元組的形式,即:orm

'user %s,id:%s'  %  (self.__name, self.__id)

纔是對的get

相關文章
相關標籤/搜索