最近在看 http://interactivepython.org/runestone/static/pythonds/index.html
看到 Control Structures 最底下有个自我测验
原本是做到像是下一行就可以了
> print([ch for word in ['cat','dog','rabbit'] for ch in word])
但是看到 "For an extra challence, see if you can figure out how to remove the
duplicates." 然后又看了底下的影片觉得用 list 包住 set 再包原本的 list 有点鸟
请问有没有人有其它不同的一行解法吗?