I wish to create a column from the output of this Python script.
str ='JJHKEKWPWPWJJENNICNRTKMNWAPOHBYEBSWKL'
n = 10
chunks = [str[i:i+n] for i in range(0, len(str), n)]
print(chunks)
Output = ['JJHKEKWPWP', 'WJJENNICNR', 'TKMNWAPOHB', 'YEBSWKL']
So that the final output will be.
JJHKEKWPWP
WJJENNICNR
TKMNWAPOHB
YEBSWKL