Using Python telegram bot i created a reminder bot that would get user reminders and store them on a list , and when the users send request to get reminder it would take them from list i thought the Python Telegram Bot Would Automatically make separate list for each user but it did not it just store in one list so now its all mixed up
the code works like this `list = [] messagehandler(update , context): if(message != 'give me reminder'): list.append(message) else: send list '