This should be simple, but I think I am missing up the syntax. I am trying to make a list of the letters that appear in a string.
import string
values=[]
values[5]="12234.7B"
holder=[]
holder.append(values[5].letters)
This code gives me an error on the letters function. Any idea why?
Many thanks.