Python comment transformer un mot en liste

wordString = "foobar"
list(wordString)
>>> ['f', 'o', 'o', 'b', 'a', 'r']
Breakable Baboon