[問題] 關於TypeError: missing.....'self'

作者: goshan (yah)   2019-12-06 17:02:55
下面這段程式中, 我預期會得到目前的日期加上字串In prtn_global_config.
可是執行後出現TypeError: prtn_global_config() missing 1 required positional argument: 'self'
error highlight處在最後一行prtn_global_config()
請教問題是出在哪裡呢? 謝謝.
PS. 我使用Sublime, python 3.6.8
import logging
import sys
import random
import time
import datetime
def prtn_info(self, msg):
print(str(datetime.datetime.now()) + msg) #datetime.datetime.now():獲取當前datetime
def prtn_global_config(self):
self.prtn_info('In prtn_global_config')
prtn_global_config()
作者: TitanEric (泰坦)   2019-12-06 18:13:00
沒有物件怎麼有self
作者: hongyan (Yan)   2019-12-06 18:28:00
包在class的函數才需要加self
作者: garyl62327 (garyl62327)   2019-12-09 08:07:00
Class 的 member function 才需要加上 self,這個self相當於是物件本身,用c++的角度來看就是*this的意思

Links booklink

Contact Us: admin [ a t ] ucptt.com