Python compine plusieurs listes

import itertools
ab = itertools.chain(['it'], ['was'], ['annoying'])
list(ab)
chfle