Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
with open('banlist.txt', 'r', encoding='UTF-8') as BanUsers: banned_ids = BanUsers.read().splitlines()
if event.type == VkEventType.MESSAGE_NEW and event.from_chat and event.user_id != banned_ids:
event.user_id != banned_ids
event.user_id not in banned_ids
banned_ids = [int(user_id) for user_id in BanUsers.read().splitlines()]
.read().splitlines()
.readlines()