So, I need to change a string e.g. STRING
and change it into ['S', 'T', 'R', 'I', 'N', 'G']
So far, I've tried the following:
o.split('')
and o.split()
how would I go about doing this?
So, I need to change a string e.g. STRING
and change it into ['S', 'T', 'R', 'I', 'N', 'G']
So far, I've tried the following:
o.split('')
and o.split()
how would I go about doing this?