暂无描述

banned_users.py 159B

123456
  1. banned_users = ['andrew', 'carolina', 'david']
  2. user = 'marie'
  3. if user not in banned_users:
  4. print(user.title() + ", you can post a response if you wish.")