我一直在試圖讓一個函數來工作,我只是不能似乎弄清楚爲什麼我得到這個功能有什麼問題?不能弄明白
TypeError: stringCounter() takes exactly 1 argument (0 given)
每次我運行此代碼
def stringCounter(count):
name ='Hi'
formatString = "%s run count is %d"
print formatString % (name, count)
test = stringCounter()
test.stringCounter(1)
我有嘗試添加自己,搞亂變數傳遞我做錯了什麼?多謝你們!