Advertisement
Onesible

Friend List Maintenance

Oct 22nd, 2023
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.21 KB | None | 0 0
  1. usernames = input().split(', ')
  2. input_line = input().split()
  3. blacklisted = 0
  4. lost_names = 0
  5. while input_line[0] != 'Report':
  6.     command = input_line[0]
  7.     if command == 'Blacklist':
  8.         name = input_line[1]
  9.         if name in usernames:
  10.             index = usernames.index(name)
  11.             usernames[index] = 'Blacklisted'
  12.             blacklisted += 1
  13.             print(f'{name} was blacklisted.')
  14.         else:
  15.             print(f'{name} was not found.')
  16.     elif command == 'Error':
  17.         index = int(input_line[1])
  18.         if 0 <= index < len(usernames):
  19.             if usernames[index] != 'Blacklisted' and usernames[index] != 'Lost':
  20.                 print(f'{usernames[index]} was lost due to an error.')
  21.                 usernames[index] = 'Lost'
  22.                 lost_names += 1
  23.     elif command == 'Change':
  24.         index = int(input_line[1])
  25.         name = input_line[2]
  26.         if 0 <= index < len(usernames):
  27.             old_name = usernames[index]
  28.             usernames[index] = name
  29.             print(f'{old_name} changed his username to {name}.')
  30.  
  31.     input_line = input().split()
  32.  
  33. print(f'Blacklisted names: {blacklisted}')
  34. print(f'Lost names: {lost_names}')
  35. print(*usernames)
  36.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement