I want to be able to split a string that just contains letters into separate letters. From the code I have below; I expected the variable f
to contain ['a','b']
but it did not. Any ideas as to how I might fix this problem?
a = "bc"
f = a.split()
print(f)
output:
['bc']