Quando eu executo esse código
for x in list("twelve o' clock"):
if x.isalpha():
text_list.append(x)
print(text_list)
o output é:
['t', 'w', 'e', 'l', 'v', 'e', 'o', 'c', 'l', 'o', 'c', 'k']
Mas quando tento fazer um LC,
text_list=[]
text_list.append(x for x in list("Twelve o' clock.") if x.isalpha())
print(text_list)
o return é esse:
[<generator object alphabet_position.<locals>.<genexpr> at 0x7f24f75137d0>]
Pq não deu certo?