I'm new in Python and I struggle with a probably an easy problem for all of you out there and maybe you could help me please
Basically I would need a function that reads a continuous string and break it as following: first 5 characters, inserts comma, next 6 characters, inserts comma, next 6 characters, inserts comma, inserts new line and then repeats
The problem: my string is:
"CARMD000000000003FEFFE000004000004BCCXT000009000025BBT01000035000025"
I need to divide this string into comma by following rule: 5-6-6 \n 
Expected result:
CARMD,000000,000003, 
FEFFE,000004,000004, 
BCCXT,000009,000025,
BBT01,000035,000025,
Thank you for your help.
