from datetime import datetime
class sms_store:
def __init__(self):
self.store = [] #Keeps resetting / not saving data from previous instances
self.message_count = 0 #Keeps resetting / not saving data from previous instances
def add_new_arrival(self,number,time,text):
self.store.append(("From: "+number, "Recieved: "+time,"Msg: "+text))
self.message_count += 1
newsms = sms_store()
time = datetime.now().strftime('%H:%M:%S')
newsms.add_new_arrival("23456",time, "hello, how are you?")
如上面评论部分所示,我想要一个列表来存储来自各种实例的信息。不是一个实例,而是几个单独的信息实例,列表是一个可访问的列表,我可以在其中编辑它,它保存来自不同实例的信息。它不这样做。它在每个实例后重置。
我已经尝试过全局变量路由但不理解它并且不认为它会起作用。我在类外设置了一个全局变量,并在类内创建了一个对象以存储在列表中,但它给了我一个错误:UnboundLocalError: local variable 'message_count' referenced before assignment。
我正在做一项需要在交互式 python 站点中使用类的练习:http: //openbookproject.net/thinkcs/python/english3e/classes_and_objects_I.html#term-class
请帮帮我。