最近在看 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 有點鳥
請問有沒有人有其它不同的一行解法嗎?