I am putting the user input into a list, but I was wondering how to change the format for how the input is stored in the list, for example:
Code
lst = list(raw_input("Enter message: "))
User Input
ABABABAB
Output
['A', 'B', 'A', 'B', 'A', 'B', 'A', 'B']
Desired Output
['AB', 'AB', 'AB', 'AB']