# your code goes here text = 'COLLECTION_DELINQUENCY_CONTROL_ACH_RETURN,COLLECTION_DELINQUENCY_CONTROL_CARD_RETURN' # Splits at space print(text.split(',')) word = 'geeks, for, geeks' # Splits at ',' print(word.split(', ')) word = 'geeks:for:geeks' # Splitting at ':' print(word.split(':')) word = 'CatBatSatFatOr' # Splitting at 3 print([word[i:i+3] for i in range(0, len(word), 3)])